I need to make a query to a table in my database. Until now I was using FIND_IN_SET
because I have strings like this: "twitter,bycicle,car".
Then, I could search by FIND_IN_SET("twitter", nameOfColumn)
But now, I need to search just part of each "set", for example: "twitter>10,bycicle,car"
It still works fine for bycicle and car but if I need to search for twitter, I cannot find it. What is the correct way to do this?