Answer the question
In order to leave comments, you need to log in
How to select all rows containing numbers from a list?
How to select all records where numbers
there are values at the same time, for example, 19 and 26?
The data is stored as "..., 19, 26, ...", may be in a different order.
This query displays all records where these numbers are (both together and separately, but only together)
SELECT * FROM `column` WHERE numbers REGEXP '19|26'
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question