Almost done.
In this subquery, I need to list book titles that are published by the same publisher as THe Wok way to cook. I am getting no date found in my results, but that's wrong. Even if my query did work, I think that it is written to show this title though and not the rest of the titles by this publisher who published the book.
Any suggestions? Thanks
SELECT title FROM books JOIN publisher USING(pubid) WHERE title =ANY (SELECT title FROM books JOIN publisher USING(pubid) WHERE title = 'THe Wok Way to Cook');.
In this subquery, I need to list book titles that are published by the same publisher as THe Wok way to cook. I am getting no date found in my results, but that's wrong. Even if my query did work, I think that it is written to show this title though and not the rest of the titles by this publisher who published the book.
Any suggestions? Thanks
SELECT title FROM books JOIN publisher USING(pubid) WHERE title =ANY (SELECT title FROM books JOIN publisher USING(pubid) WHERE title = 'THe Wok Way to Cook');.