I want to filter out a specific field (genre) from my product table within my database, someone suggested using:
SELECT DISTINCT genre FROM tbl
This is fine, but I want to get multiple values from my table e.g
product_id, type, title, genre, picture etc
How could I go about getting multiple values out, and filtering the genre field?
Cheers
Mike