0

I have a column of SET type made up of creators of comic books.

In PHP, I do a query to get all the comics with a single creator.

If I do a query using WHERE creator = "John Byrne", I can see every entry where John Byrne is the only and single item, but as soon as I have more than one item in my SET, nothing appears...

Here's an example of the query:

$sql = "SELECT * FROM comic_list AS A LEFT JOIN title_list AS B ON A.title = B.title_ID WHERE A.creators='John Byrne'";

0 Answers0