我想在 CLOB 中搜索一个字符串:
就像是id_name_2569
我得到了我需要的所有 ID,如下所示:
select project_line_id as ID
from tbl1
where art_id in (
select art_id
from tbl2
where type = 3
);
我在这个表中搜索:A1 是一个 CLOB 字段
select * from tbl3 where dbms_lob.instr(A1, ID)>0;
显然它不起作用我知道,这是我可以做到这一点的方法吗?