在 Oracle 中使用数据透视表的建议

Advice Using Pivot Table in Oracle(在 Oracle 中使用数据透视表的建议)
本文介绍了在 Oracle 中使用数据透视表的建议的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要一个报告,我应该使用数据透视表.报告将按类别分组.语句时使用 case 不好,因为类别很多.您可以将 Northwind 数据库视为示例,所有类别将是显示为列和报告将显示客户在类别中的偏好.我不知道其他解决方案,并在 Internet 中看到了 SQL Server 存储过程的示例.除了用例之外,您知道解决方案吗?

i need a report and i should use pivot table for it.Report will be group by categories .It is not good to use case when statement because there are many categories.u can think Northwind Database as sample and All Categories will be shown as Columns and Report will show customers preference among Categories.I dont know another solution and saw examples as Stored Procedures in Internet for Sql Server.Do u know a Solution except for using case when?

谢谢

推荐答案

一旦您获得 Oracle 11G,就会有一个 内置 PIVOT 功能.在此之前,您只能使用 CASE(或 DECODE)表达式.我在我的博客上有一篇关于如何自动执行此操作的文章.

Once you get Oracle 11G there is a built-in PIVOT feature. Prior to that, you are restricted to using CASE (or DECODE) expressions. I have an article on how to automate doing that on my blog.

这篇关于在 Oracle 中使用数据透视表的建议的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)