Hi,
I need to wite a query that will retrieve the records from Table A , provided that the key in Table A does not exist in Table B.
Any help will be appreciated.
Thanks
|
|
Hi, I need to wite a query that will retrieve the records from Table A , provided that the key in Table A does not exist in Table B. Any help will be appreciated. Thanks |
||
|
|
|
|
|
||
|
|
|
|
||||
|
|
|
Use a left join. The DB tries to map datasets from TableB to TableA using the id fields. If there is no fitting data set available in TableB, the TableB data gets NULL. Now you just have to check for TableB.id to be NULL.
|
||
|
|
|
|
None of the above solutions would work if the key comprises of multiple columns. If the tables have compound primary keys, you'll have to use a "NOT EXISTS" clause similar to the one below.
|
|||
|
|
|
Assuming: TableA's Id = Id TableB's Id = Id
|
||
|
|
|
|
also works and it's almost self documenting... |
||
|
|