select * from table where
REGEXP_LIKE(字段名, '(匹配串1|匹配串2|...)') ;//全模糊匹配
select * from table where
REGEXP_LIKE(字段名, '^(匹配串1|匹配串2|...)') ;//右模糊匹配
select * from table where
REGEXP_LIKE(字段名, '(匹配串1|匹配串2|...)$') ;//左模糊匹配
---------------------
用REGEXP_LIKE,可以匹配多个like值