SELECT LISTAGG([합칠 컬럼명], [구분자]) WITHIN GROUP(ORDER BY [정렬 컬럼명]) FROM 테이블명
select listagg(ename, '&') within group(order by empno desc) from emp;