▶ 여러 row를 하나의 row로 출력
사용 예) - oracle 10g이상에서 사용할 수 있음
select card_status
from msr_card_master
where card_status is not null
group by card_status;
select WMSYS.WM_CONCAT(CARD_STATUS) AS card_status
from ( select card_status
from msr_card_master
where card_status is not null
group by card_status
order by card_status )
'프로그램 > DB' 카테고리의 다른 글
[오라클] CONNECT BY LEVEL 을 이용한 특정 날짜 구간 조회 (0) | 2021.02.13 |
---|---|
[Oracle] TRUNC 함수 (0) | 2012.10.30 |
[MySql] 여러 row를 한 줄로 출력 - (GROUP_CONCAT) (0) | 2012.09.18 |
[펌] 오라클 - 계층 구조의 조회 (0) | 2012.07.06 |
[펌] 오라클 페이징 처리 방법 (0) | 2012.06.08 |