0

我有一个导入表格的 Excel 电子表格,如下所示:

+-------------------------------------------------------------------------+
| Col1     Col2            Col3             Col4              Col5        |
+-------------------------------------------------------------------------+
| Ref      Name            01-01-2013       02-01-2013        03-01-2013  |
| 1        John            500              550               600         |
| 2        Fred            600              650               400         |
| 3        Paul            700              750               550         |
| 4        Steve           800              850               700         |
+-------------------------------------------------------------------------+

我的目标是将其更改为如下所示:

+-------------------------------------------------------------------------+
| Ref      Name            Date            Sales                          |
+-------------------------------------------------------------------------+
| 1        John            01-01-2013      500                            |
| 1        John            02-02-2013      550                            |
| 1        John            03-01-2013      600                            |
| 2        Fred            01-01-2013      600                            |
| .....                                                                   |
+-------------------------------------------------------------------------+

到目前为止,我想出了如何使用 UNPIVOT 将日期和销售数字放入 1 列,但这并不能解决将日期分成自己的列的问题。任何帮助表示赞赏。谢谢!!

4

1 回答 1

0

您可以使用两个单独的 UNPIVOT 查询,然后加入它们。第一个 unpivot 将转换具有refin 值的行col1,然后第二个子查询对sales. 您加入先前列名的子查询:

select s.col1, 
  s.col2, 
  d.value date,
  s.value sales
from
(
  select col1, col2, col, value
  from yt
  unpivot
  (
    value
    for col in (col3, col4, col5)
  ) un
  where col1 = 'ref'
) d
inner join
(
  select col1, col2, col, value
  from yt
  unpivot
  (
    value
    for col in (col3, col4, col5)
  ) un
  where col1 <> 'ref'
) s
  on d.col = s.col;

请参阅带有演示的 SQL Fiddle

于 2013-05-13T22:07:04.753 回答