Oracle工作笔记

字段拆分行:

select regexp_substr('1,2','[^,]+1',1,LEVEL) from dual
connect by LEVEL <= regexp_count('1,2',',')+1;

行合并为字段值:

select listagg(appno,',') within group (order by appno) aa 
from dual 
where emp='xxx'


你可能感兴趣的:(oracle)