Hello !
I have two tables, table1 and table2 and want to substract the 2 sets of data.
(select table1.field1, table1.field2
from table1)
minus
(select table2.field1, table2.field2
from table2)
does not work. I get a message error: "syntax error in union query"
Could anybody help me ?
Thanks
Alex
I have two tables, table1 and table2 and want to substract the 2 sets of data.
(select table1.field1, table1.field2
from table1)
minus
(select table2.field1, table2.field2
from table2)
does not work. I get a message error: "syntax error in union query"
Could anybody help me ?
Thanks
Alex