I have a MySQL DB table as follows
MyTable
+------+------+------------------+
| id | name | items |
+------+------+------------------+
| 1 | John |item1,item2,item3 |
| 2 | Ram |item1,item2 |
+------+------+------------------+
Is there any way possible to use the value from items in an IN clause? I know it treats the entire thing as 1 literal string, but is there anyway it would treat it as separate items, almost as if I manually inserted those items in as a raw query?