In this particular case, you can do something like:
WHERE numberslist = '1' OR numberslist LIKE '1,%' OR numberslist LIKE '%,1,%' OR numberslist LIKE %,1'";
if there are no spaces between commas and commas.
But this ugly, not to mention, will not be able to use any indexing at all.
source share