今天遇到一个题目,数据库的竖转横

经过多方支援,终于


select studentid, name,
    max(case month  when '1' then money else 0 end)  一月,
    max(case month  when '2' then money else 0 end)  二月,
    sum(money) 总和
  from student
group by studentid, name

这里使用了聚合函数,所以后面分组使用了group by,而case那个是一个判断,之所以使用max,是因为它并不是有条件的查询,而是全部查询然后在里面判断的,而上面之所以这样写,就是它写了else 0 end,这个意思就是相当于if判断中的else,所以里面并不是单纯只有一月,二月的值,还有0,所以使用了最大值max()函数

07-23 13:20