BLOB保存的数据是无法使用“=”或者"like",直接查询的。
查询办法是将blob转成varchar2进行条件过滤:
select * from cms_offline_contents where utl_raw.cast_to_varchar2(DBMS_LOB.SUBSTR(column,2000,1)) like '%oracle%'
或者
select * from cms_offline_contents where dbms_lob.instr(file_content,utl_raw.cast_to_raw('Type'),1,1)<>0
上面的方法比较简单,但偶尔会遇到查询条件是中文,并且有可能转成varchar2有乱码,那就要用到下面的方法了:
select * from cms_offline_contents where Utl_Raw.Cast_To_Varchar2(Utl_Raw.Convert(Dbms_Lob.Substr(file_content,1),'SIMPLIFIED CHINESE_CHINA.ZHS16GBK','AMERICAN_THE NETHERLANDS.UTF8')) like '%本所要闻%'
原文链接:https://www.f2er.com/oracle/213701.html