仅 Sql Pivot 前 N 行
我有以下结构
Col1 Col2 Col3
---------------
F P R1
F P R2
F P R3
F P R4
Col3 值可以是任何东西 现在我只想要以下格式的前 3 个
Col1 Col2 Res1 Res2 Res3
------------------------------
F P R1 R2 R3
I have Following structure
Col1 Col2 Col3
---------------
F P R1
F P R2
F P R3
F P R4
Col3 values can be any thing
Now I want in following format only top 3
Col1 Col2 Res1 Res2 Res3
------------------------------
F P R1 R2 R3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果使用 SQL Server 2005+、Oracle 8i+、PostgreSQL 8.4+——您可以使用分析函数:
If using SQL Server 2005+, Oracle 8i+, PostgreSQL 8.4+--you can use analytic functions:
您可以执行以下操作:
You can do the following:
您寻求的是一个动态交叉表查询,它将根据 Col3 中的值构建列。 SQL 语言不是为动态列生成而设计的,因此如果没有一些模糊的动态 SQL,这种类型的查询就无法在 T-SQL 中完成。相反,我建议您在中间层组件中构建查询或使用报告工具。
What you seek is a dynamic crosstab query that will build columns out of the values in Col3. The SQL language was not designed for dynamic column generation and thus this type of query cannot be done in T-SQL without some fugly dynamic SQL. Instead, I would recommend you build your query in a middle-tier component or use a reporting tool.