SQL dbms_lob.substr从hugeclob输出

时间:2018-05-30 18:26:09

标签: sql oracle clob

我试图从巨大的clob中提取输出但是唯一的特定单词/文本

赞:'可用'或者'不可用'或者' Ordered'

这就是我现在所拥有的:

select dbms_lob.substr( response, 4000, 1) response from (
    select x.* from t_leg x
     where service = upper('LETO87')
     order by search_date desc
) where rownum < 2

我试试这个:

SELECT SUBSTR(response, 30, INSTR(response,' ',10,2)) from 
(select x.* from t_leg x where service=upper('LETO87') order by 
search_date desc) where rownum < 2

但我还有一些我不需要的文字。只输出单词而不输出文本的其余部分?

0 个答案:

没有答案