-- CLOB字段查询 成文本 (这个有啥用??)
select dbms_lob.substr(t.CLOB字段) as text from 表名称 t
-- CLOB字段为查询条件 模糊查询
dbms_lob.instr(CLOB字段,'要匹配的文字',1,1)<>0
-- CLOB字段为查询条件 精确查询
dbms_lob.compare(CLOB字段, to_clob('要匹配的文字')) = 0

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-30
  • 2022-12-23
  • 2021-10-06
  • 2021-12-10
猜你喜欢
  • 2022-12-23
  • 2021-11-19
  • 2021-04-26
  • 2022-12-23
  • 2022-12-23
  • 2021-10-23
相关资源
相似解决方案