在 SQL 中按年份并排比较数据
我有类似于以下的表:
Year | Product | Value
2006 A 10
2006 B 20
2006 C 30
2007 A 40
2007 B 50
2007 C 60
我想要一个将返回以下比较的查询
Product | 2006 Value | 2007 Value
A 10 40
B 20 50
C 30 60
有哪些选项可以执行此操作?可以不用join就完成吗?
我正在使用 DB2,但所有 SQL 类型的答案都会有所帮助。
I have table similar to the following:
Year | Product | Value
2006 A 10
2006 B 20
2006 C 30
2007 A 40
2007 B 50
2007 C 60
I would like a query that would return the following comparison
Product | 2006 Value | 2007 Value
A 10 40
B 20 50
C 30 60
What are the options to do so? Can it be done without joins?
I'm working with DB2, but answers in all SQL types would be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一个简单的交叉表查询应该可以完成
检查语法,但这是基本思想。确实没有必要加入。
A simple cross tab query should do it
Check the syntax, but that's the basic idea. There is really no need to join.
您已经得到了一些不使用联接的答案,但为了进行比较,这里有一个使用联接的替代方案:
以下是使用 SQL Server 支持的 PIVOT 的解决方案:
You've already got some answers that don't use a join, but just for comparison here's an alternative that does use a join:
Here's a solution using PIVOT that SQL Server supports: