I have two tables
Table A:
ID 1 2 3 4
Table B:
ID 1 2 3
I have two requests:
SELECT ID FROM A WHERE NOT EXISTS( SELECT 1 FROM B WHERE B.ID = A.ID )