I have two tables.
Table one had a column with category numbers in the following format:
t1.cat = 2,55,67,34
I also have another table with id column, where column ID is one of those numbers in t1.cat
t2.ID
t2.description
How do I join t2 to a query on t1 so that I could output t2.description if t2.ID found in t1.cat cell?
INNER JOIN t2 ON ( t2.ID = t1.cat)
???????????