我有以下数据
Col1, Col2, Col3, Col4, Col5
1, P, W, M, adhfggh
1, P, W, M, fdasdfd
1, P, W, M, retretre
所以,我想得到这个
Col1, Col2, Col3, Col4, ColA, ColB, ColC
1, P, W, M, adhfggh, fdasdfd, retretre
我无法弄清楚如何使用SSIS做到这一点。
我应该尝试使用SQL语句这样的东西,但不知道放在括号中的内容
select Col1, Col2, Col3, Col4, Col5 from tableA
Unpivot
( Col5 for Col5 in (, , ) ) as UnPvt