Hi,
I would just like to know what sql statement should I use to check if records Table A does not exists in any of the tables , Table B and Table C.
My idea is to use this
Select books
from table a
where a.books not exists = ((select b.books
from table b
where b.books = a.books)
or (select c.books
from table c
where c.books = a.books))
Thanks,