Hello,
I need to select the records from a table that DO NOT have a record in another table.
For Example
Table1
Code | Name
0 | AA
1 | A0
2 | A00
Table2
Code1 | Code2
1 | 100
2 | 200
So the SQL would return only the record "0 | AA" from the table "Table1".
Any ideas?
Thanks.