clob 타입의 칼럼인 content 필드에 '김1', '김11', '김111' 이 저장되어 있을 경우
dbms_lob.instr로 검색하면 '김1' '김11' '김111'
모두 찾아주게 되잖아요.
***************************************
저는 단지 '김1'인 사람만 찾아야 할 상황이거든요.
방법없나요?
SELECT * FROM TAB WHERE COLS LIKE '김1';
이렇게는 안되나요?
with t as
(
select '김1' name from dual union all
select '김1김1' name from dual union all
select '김11' name from dual union all
select '김111' name from dual union all
select '김111' name from dual
)
select name from t
where regexp_instr(name, '김1$')=1
;