J
James Pose
.... not sure what the best way to do this. What i need to do is return
all the records in 1 table that don't exist in another table.
scenio
Table A contains a list of Tasks to work on.
Table B contains a list of Tasks that are currently being worked on.
So what I need returned is a list of all Tasks not being worked on.
SELECT *
FROM A
WHERE (NOT (A_ID IN
(SELECT A_ID
FROM B)))
I don't believe I can do a select across tables in a dataset.
Ideas?
all the records in 1 table that don't exist in another table.
scenio
Table A contains a list of Tasks to work on.
Table B contains a list of Tasks that are currently being worked on.
So what I need returned is a list of all Tasks not being worked on.
SELECT *
FROM A
WHERE (NOT (A_ID IN
(SELECT A_ID
FROM B)))
I don't believe I can do a select across tables in a dataset.
Ideas?