I have user tables which contains column city_id and inside this column city ids are stored as comma separated values as following:
user_id user_name city_id
1 abc1 1,2,3
2 abc2 15,2,9
3 abc5 1,2,13
Now I want to search rows which contains city id = 1,9,13
from city_id column.
How it can be done?
Expected Ouput:
abc, abc1, abc3