Oracle模糊查询区分大小写

时间:2021-08-05 04:13:48

Oracle模糊查询区分大小写,解决方法:

查询条件使用UPPER()或LOWER()修饰,同时查询参数传入大写或小写

例如 select t.name from table t where t.name like '%text%';  -->  select t.name from table t where UPPER(t.name) like UPPER('%TEXT%');