ok. Now, i have this table
+-------+------+
| name | cat |
+-------+------+
| shen | a,c |
| shen1 | b,c |
+-------+------+
select * from test where cat='a'; returns nothing.
Wouldn't that display shen cuz shen contains a?
Also,
Select * from test where cat='c'; returns nothing too.
I was expecting it to output shen and shen1 cuz they both contain c