I want to have the contents of one table's field appear in another table's field but I can't seem to make it work with:
SELECT
compare.id,
games.game,
genres.genre,
compare.publisherID,
compare.engineID,
compare.developerID,
users.user
FROM
compare,games,genres,users
WHERE
compare.gameID=games.gameID
AND
compare.userID=users.userID
AND
genres.genreID=compare.genreID
genreID keeps coming out to "3" instead of "1,2" as it is in compare.genreID which I want translated to "action" and "adventure" using the names in the "genres" table via genres.genreID.
Is there a way to have MySQL do this automatically or must I use PHP to convert compare.genresID ("1,2") to genres.genre ("action,adventure")?