比如需要这样的效果:

select * from user where name like '%四%' or name like '%五%'

可以使用 REGEXP 写成:

select * from user where name regexp '四|五'