I have a column that has multiple numbers separated by a comma. Example for a row:
`numbers`:
1,2,6,66,4,9
I want to make a query that will select the row only if the number 6
(for example) is in the column numbers
.
I cant use LIKE
because if there is 66
it'll work too.