Oracle 10g 中的透视/交叉表查询(动态列号)
我有这个表视图
UserName Product NumberPurchaces
-------- ------- ---------------
'John Doe' 'Chair' 4
'John Doe' 'Table' 1
'Jane Doe' 'Table' 2
'Jane Doe' 'Bed' 1
如何创建在 Oracle 10g 中提供此数据透视表的查询?
UserName Chair Table Bed
-------- ----- ----- ---
John Doe 4 1 0
Jane Doe 0 2 1
有什么办法动态地做到这一点吗?我看到了很多方法(解码、PL/SQL 循环、联合、11g 枢轴),
但我还没有根据上面的示例找到适合我的方法
编辑:我不知道开发期间产品的数量或类型,因此必须是动态的
I have this table view
UserName Product NumberPurchaces
-------- ------- ---------------
'John Doe' 'Chair' 4
'John Doe' 'Table' 1
'Jane Doe' 'Table' 2
'Jane Doe' 'Bed' 1
How can I create a query that will provide this pivot view in Oracle 10g ?
UserName Chair Table Bed
-------- ----- ----- ---
John Doe 4 1 0
Jane Doe 0 2 1
Any way to do it dynamically? I saw so many approaches (decode, PL/SQL loops, unions, 11g pivot)
But I've yet to find something that will work for me based on the above example
Edit: I don't know the number or type of products in development time so this has to be dynamic
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Oracle 11g 是第一个支持PIVOT/UNPIVOT 的,所以你必须使用:
可以使用DECODE,但是从9i 开始就支持CASE。
Oracle 11g is the first to support PIVOT/UNPIVOT, so you have to use:
You could use DECODE, but CASE has been supported since 9i.
我想人们必须编写一些代码来动态创建查询。除了“CHAIR”、“TABLE”等字符串之外,每个 MAX() 行都是相同的。
因此,人们必须遍历数据才能找到所有产品并构建第二个查询。然后执行动态构建的查询。
I guess one would have to write some code to dynamically create the query. Each MAX() line is identical except for the 'CHAIR', 'TABLE', etc, strings.
So, one would have to itterate through the data to find all the products and build up a second query as one goes. Then execute that dynamically built query.