Hi All,
I want to join two tables, and display data results only if the record doesn't exist or meet the conditions. The only way I know how to do this is to use a NOT EXIST statement. Are there other options?
USE pub
SELECT *
FROM authors u
WHERE NOT EXISTS (SELECT 1 FROM titleauthor WHERE au_id = u.au_id)
Thanks.
Matt