SQL 实现行列互换

Oracle:不过大多数是采用 oracle 数据库当中的一些便捷函数进行处理,比如 ”pivot”;

MySql:目前没有找到更好的方法

题目:数据库中有一张如下所示的表,表名为sales。

季度销售量
1991 1 11
1991 2 12
1991 3 13
1991 4 14
1992 1 21
1992 2 22
1992 3 23
1992 4 24


要求:写一个SQL语句查询出如下所示的结果。

一季度二季度三季度四季度
1991 11 12 13 14
1992 21 22 23 24


我给出的答案是这样的:

1 select 年, 
2 sum(case when 季度=1 then 销售量 else 0 end) as 一季度, 
3 sum(case when 季度=2 then 销售量 else 0 end) as 二季度, 
4 sum(case when 季度=3 then 销售量 else 0 end) as 三季度, 
5 sum(case when 季度=4 then 销售量 else 0 end) as 四季度 
6 from sales group by 年;
原文地址:https://www.cnblogs.com/QQ931697811/p/5206546.html