I need to add the value of a column in SQL, so it looks like this:
SELECT SUM(qtdsaco) FROM armazem
This code works. Now I need to add the value of the other table, it looks like this:
SELECT SUM(qtdsaco) FROM armazem2
So I had to take the result of the two and subtract. How do I?