Is it possible to retrieve records using single query in case like:
id title tags
1 First yellow,blue
2 Second green, yellow,red,
3 Third black,purple
What I would like to do is select all records where keyword yellow appears. The result should return two records "First and Second"
select * from table where tags like '%yellow%'