I have a comma delimited list like this saved in a mysql table:
-----------------
|id | list |
-----------------
| 4 |12,45,65,4 |
Each number in "list" corresponds with an ID in another table.
Is there a way so I can query the other table based on theses IDs and bring up those rows associated with the numbers in "list"?