I have a table of values like:
id | genre
-------------
1 | Puzzle
2 | RPG
3 | Action
4 | Fighter
5 | Adventure
And in another table, I have a string of comma delimited Ids that match the above table, like:
'1, 3, 5'
And I want my query to return this field as:
'Puzzle, Action, Adventure'
Also, maybe is there a smarter way to approach this problem than storing this string of ids?