여러 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 )

+ Recent posts