Oracle中如何查询CLOB字段类型的内容
转自:https://www.cnblogs.com/zt007/p/7205890.html
语法:select * from table_name where dbms_lob.instr(字段名(clod类型),‘查询条件‘,1,1) > 0;
语法解释:
在Oracle中,可以使用instr函数对某个字符串进行判断,判断其是否含有指定的字符。其语法为:
instr(sourceString,destString,start,appearPosition)。
其中sourceString代表源字符串;
destString代表想聪源字符串中查找的子串;
start代表查找的开始位置,该参数可选的,默认为1;
appearPosition代表想从源字符中查找出第几次出现的destString,该参数也是可选的,默认为1;
如果start的值为负数,那么代表从右往左进行查找。
返回值为:查找到的字符串的位置。
案例:查询请求信息(colb)中 含有身份证号为3702*********的数据
select * from table1 t where dbms_lob.instr(t.request_map, ‘3702*********‘) > 0;
或
select * from table1 t where dbms_lob.instr(t.request_map, ‘3702*********‘ ,1,1) > 0;
相关推荐
Omega 2020-08-16
娜娜 2020-07-28
goodriver 2020-06-17
LuoXinLoves 2020-06-10
Justdoit00 2020-06-01
Carlos 2020-03-06
昊 2019-12-11
Justdoit00 2020-07-04
sunboy 2020-06-14
Justdoit00 2020-06-08
Justdoit00 2020-06-08
娜娜 2020-06-08
oraclemch 2020-05-30
bianxq 2020-05-16
sunboy 2020-02-20
ktyl000 2020-02-20
一昕之代码 2020-02-20
LuoXinLoves 2020-05-04
点滴技术生活 2020-04-27