JohnSmith
2011-04-26 21:41:34 UTC
List the authors ho have written at least one "Popular Computing" book. Do NOT use a Join. Show AuthorID and their name.
here is what I have for a query so far..
select au_id [Author ID], au_fname + ' ' + au_lname [Author's Name]
from authors
where.......????
The database has 2 tables for this question. First table (authors) stores the author information. The second table (titles) stores the type of book being sold (type). I'm not sure how to reference the title table through a subquery on this question. Any help is appreciated.