oracle sql like多个条件函数

select price, publish_time
from tel
where  regexp_like(publish_time,'(2017|2018|2019)')
group by price, publish_time
> 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
不包括:NOT REGEXP_LIKE

你可能感兴趣的:(SQL,oracle,like)