WITH work_t AS
(
SELECT '20180001'empno , '[2015-06-23] 경도 [2015-07-14] 상도 [2015-08-04] 겨 3/5 [2018-02-05] 켈로이드 [2018-02-19] 2/5 [2018-03-05] 3/5 ' as [text]
UNION ALL
SELECT '201800012', '[2015-06-23] 경도 [2015-07-14] 상도' as [text]
)
SELECT empno, [text]
from work_t
상위 내역을 조회 하면 아래와 같이 조회 되며 text는 [일자]와 내역으로 입력 되어 있습니다.
empno text
20180001 [2015-06-23] 경도 [2015-07-14] 상도 [2015-08-04] 겨 3/5 [2018-02-05] 켈로이드 [2018-02-19] 2/5 [2018-03-05] 3/5
20180012 [2015-06-23]경동 [2015-07-14] 상도
이러한 형태의 내역을 empno 값과 일자 Text별로 data를 sorting 하고 싶습니다.
ex)
WITH work_example AS
(
SELECT '20180001'empno , '[2015-06-23]' as [day], '경도 ' as [text]
UNION ALL
SELECT '20180001'empno , '[2015-06-21]' as [day], '상도 ' as [text]
UNION ALL
SELECT '20180001'empno , '[2015-06-22]' as [day], 'Test ' as [text]
UNION ALL
SELECT '20180001'empno , '[2015-06-24]' as [day], '경도 ' as [text]
)
SELECT empno, [day],[text]
from work_example
부탁 드립니다.
|