Posts by Alberto Pinto • 1 point
1 post
-
0
votes2
answers96
viewsQ: Correct code to select and compare
I want to select * from table A that are different from table B and have used the following code: select * from Tabela A inner join Tabela B on A1 != B1 and A2 != B2 and A3 != B3 but the computer…