oracle sql like多个条件函数

select * from table where 
REGEXP_LIKE(字段名, '(匹配串1|匹配串2|...)') ;//全模糊匹配

select * from table where 
REGEXP_LIKE(字段名, '^(匹配串1|匹配串2|...)') ;//右模糊匹配

select * from table where 
REGEXP_LIKE(字段名, '(匹配串1|匹配串2|...)$') ;//左模糊匹配

你可能感兴趣的:(oracle)