Reputation: 12455
Is there any method to do this:
SELECT * FROM `cores` WHERE superkinds IN ('%altro%', '%feste%')
Thanks
Upvotes: 3
Views: 792
Reputation: 52310
Use RLIKE or REGEXP with a valid regular expression.
RLIKE
REGEXP
Upvotes: -1
Reputation: 17977
WHERE superkinds LIKE '%altro%' OR superkinds LIKE '%feste%'
Upvotes: 4
Reputation: 72870
Not with IN, only with OR.
IN
OR
Upvotes: 2