Posts by Everton Alves • 71 points
3 posts
-
5
votes2
answers224
viewsA: Select Inner Join of what is not in the other table
Try it this way: SELECT anuidades.* FROM anuidades LEFT JOIN pagamentos ON anuidades.Id = pagamentos.idAnuidade WHERE pagamentos.idMinistro = 1 AND pagamentos.idAnuidade Is null…
-
1
votes1
answer97
viewsA: How to use Excel subtraction on a set of numbers?
Your question is a little confused, subtract what from what? If you are going to do something equivalent to the Sum function at the end you would have a negative value: -360. If that is the goal you…
excelanswered Everton Alves 71 -
1
votes3
answers2206
viewsA: How to push an object into another object
complemented, I think his intention was to do this: let Objt = { titulo1: [ { id: 1 } ], titulo2: [ { id: 1 } ] } Objt.titulo2.push ({id:2}) }…