W obecnym scenariuszu możesz to zrobić za pomocą FIND_IN_SET
za każdym razem, gdy musisz dopasować item_features
SELECT * FROM
table1
WHERE
item_types
IN (8) AND FIND_IN_SET(4,item_features)
AND FIND_IN_SET(5,item_features)
AND FIND_IN_SET(10,item_features)
Pokaz skrzypiec
EDYTUJ Zgodnie z komentarzem @Ravinder
SELECT * FROM
table1
WHERE
FIND_IN_SET(8,item_types)
AND FIND_IN_SET(4,item_features)
AND FIND_IN_SET(5,item_features)
AND FIND_IN_SET(10,item_features)