Is there any method to do this:
SELECT * FROM `cores` WHERE superkinds IN ('%altro%', '%feste%')
Thanks
Not with IN, only with OR.
IN
OR
WHERE superkinds LIKE '%altro%' OR superkinds LIKE '%feste%'
Use RLIKE or REGEXP with a valid regular expression.
RLIKE
REGEXP