[面试题]关于数据库查询 mysql

2018-04-26 17:55:28 +08:00
 adli007
怎么把这样一个表
year  month amount
1991   1      1.1
1991    2      1.2
1991    3      1.3
1991    4      1.4
1992    1      2.1
1992    2      2.2
1992    3      2.3
1992    4      2.4
查成这样一个结果
year m1   m2   m3   m4
1991 1.1 1.2 1.3 1.4
1992 2.1 2.2 2.3 2.4
844 次点击
所在节点    数据库
2 条回复
Efraim
2018-04-26 19:51:37 +08:00
select year ,sum(if(month=1,amount,0)) as m1,sum(if(month=2,amount,0)) as m2,sum(if(month=3,amount,0)) as m3,sum(if(month=4,amount,0)) as m4 from test group by year;
adli007
2018-04-27 00:56:05 +08:00
@Efraim 多谢了 又学到了 if()函数

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/450157

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX