사용자 도구

사이트 도구


oracle:comma

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

다음 판
이전 판
oracle:comma [2019/11/21 14:19] – 만듦 taekguoracle:comma [2025/04/15 10:05] (현재) – 바깥 편집 127.0.0.1
줄 5: 줄 5:
   from dual   from dual
   connect by regexp_substr('pingpong,arrow,function', '[^,]+', 1, level) is not null;   connect by regexp_substr('pingpong,arrow,function', '[^,]+', 1, level) is not null;
 +</Code>
 +
 +<Code sql>
 +select *
 +from emp
 +where ename in (
 +select regexp_substr('pingpong,arrow,function', '[^,]+', 1, level)
 +  from dual
 +  connect by regexp_substr('pingpong,arrow,function', '[^,]+', 1, level) is not null
 +);
 </Code> </Code>
oracle/comma.1574345979.txt.gz · 마지막으로 수정됨: 2025/04/15 10:05 (바깥 편집)