如何旋转表格?
我的表有这样的结构
subcode date rol1 rol2 rol3 rol4 rol5 rol6 upto rol60
--------------------------------------------------------------
mc1603 12/03/2011 p p a p p p a
mc1604 12/03/2011 p p a p p p a
mc1605 12/03/2011 p p a p p p a
mc1606 12/03/2011 p p a p p p a
,
p=present
a=absent
这个表将被更改为
rollno mc1603 mc1604 mc1605 mc1606 date
-------------------------------------------------
rol1 p p p p 12/03/2011
rol2 p p p p 12/03/2011
rol3 p p a p 12/03/2011
My table has this structure
subcode date rol1 rol2 rol3 rol4 rol5 rol6 upto rol60
--------------------------------------------------------------
mc1603 12/03/2011 p p a p p p a
mc1604 12/03/2011 p p a p p p a
mc1605 12/03/2011 p p a p p p a
mc1606 12/03/2011 p p a p p p a
here
p=present
a=absent
this table will be change into
rollno mc1603 mc1604 mc1605 mc1606 date
-------------------------------------------------
rol1 p p p p 12/03/2011
rol2 p p p p 12/03/2011
rol3 p p a p 12/03/2011
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以下是使用
unpivot
和pivot
执行此操作的方法:静态查询:
您也可以使用 动态 SQL 但您需要先获取列列表,然后才能
unpivot
pivot
:动态查询:
结果:
Here is how you would do this with both an
unpivot
and thenpivot
:Static query:
You can also do this with Dynamic SQL but you will need to get the list of columns first before you can
unpivot
and thenpivot
:Dynamic query:
Results:
这是可以做到的,称为表转置。在 SQL Server 上,它需要构建动态 SQL 语句并使用 EXEC 语句执行它。
This can be done, it's called a table transpose. On SQL Server it requires building a dynamic SQL statement and executing it using the EXEC statement.
您必须旋转子代码列,然后取消旋转其他滚动列。
透视表将是 unpivot 语句内的派生表。
You have to pivot the subcode column, and then unpivot the other roll columns.
The pivoted table would be a derived table inside the unpivot statement.