SQL/CLOB

ORACLE CLOB LIKE ,REPLACE

nineDeveloper 2015. 11. 3. 13:41
728x90
반응형

1.CLOB LIKE 검색

 

SELECT * FROM 테이블이름

WHERE DBMS_LOB.INSTR(CLOB필드명, '검색어' ) > 0;   

 

2.CLOB REPLACE

 

EGEXP_REPLACE(FORM_HTML,STR1,STR2)

 

update table 명 

set form_html = regexp_replace(form_html,'http//:','https://')
 WHERE DBMS_LOB.INSTR(form_html,'http://')>0; 

728x90
반응형