SQL Server 数据透视表
我相当确定我可以使用 PIVOT 函数来解决我的问题,但我就是不明白。任何帮助将不胜感激。
所以我有一个看起来像这样的表
create table Answer (
id int,
question_id int,
user_id int,
answer varchar(1025))
,我想编写一个返回结果集的查询,如下所示:
user_id, question_1, question_2, question_3 1, 'answer1', 'answer2', 'answer3' 2, 'answer1', 'answer2', 'answer3' n, 'answer1', 'answer2', 'answer3'
这可能吗?
TIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设表中存在此输入:
您可以执行以下操作:
您会得到以下结果:
Assumming this input in your table:
You can do something like this:
You get this result:
可能的?是的。
理想吗?完全在 sql 中执行此操作很少会遇到很多性能问题。一旦数据透视表中的列数超过 8 左右,性能就完全无法实现。
这是否充满法律问题?不幸的是,是的。微软以其无限的智慧获得了专利“逻辑数据与物理数据之间映射的方法和系统”,2007 年 7 月发布
因此,请谨慎行事。
Possible? Yes.
Desirable? Rarely as you will run into lots of performance issues doing this entirely in sql. Once the number of columns in the pivot goes beyond around 8 or so, performance goes completely out the window.
Is this frought with legal issues? Unfortunately, yes. Microsoft in their infinite wisdom patented a "method and system for mapping between logical data and physical data", issued July 2007
So, proceed with caution.