Let me clarify a little ...
There is an ASP page with a SQL statement that is querying an Access database. The query that I used to find the authors without SciFi books looks like this:
SELECT FirstName, LastName FROM (Authors as a INNER JOIN Books as b ON a.AuthorID = b.AuthorID) INNER JOIN BookCategory as c ON b.CategoryID = c.CategoryID WHERE c.Category <> 'SciFi'
I had shortened it in my original post for simplicity, but as I stated this will not work if an author has a SciFi book and a Non-Fiction book. The author will show up in the resulting recordset.
I am looking for a way to find all of the authors that have never written a SciFi book without having to look through the results with a second query. If you need any more info, let me know ... I appreciate the assistance.