【SQL】行转列问题

@SQL

已知:

yearmonthamount
199111.1
199121.2
199131.3
199141.4
199212.1
199222.2
199232.3
199242.4

请转换成这样的结果:

yearm1m2m3m4
19911.11.21.31.4
19922.12.22.32.4

创建这张表格

-- 在库下创建表
create table table1(
   year int,
   month int ,
   amount double) ;
--  插入数据
insert into table1 values
          (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);

行专列的关键语句:

简写if:

select year,
       sum(if(month=1,amount,0)) m1,
       sum(if(month=2,amount,0)) m2,
       sum(if(month=3,amount,0)) m3,
       sum(if(month=4,amount,0)) m4
from table1
group by year;

伪列理解

select year,
       sum(a) as m1,
       sum(b) as m2,
       sum(c) as m3,
       sum(d) as m4
from
    (select *,
            -- a是伪列,我们自己造的。
            if(month=1,amount,0) a,
            if(month=2,amount,0) b,
            if(month=3,amount,0) c,
            if(month=4,amount,0) d
     from table1) t
group by t.year;

case when

select year,
       sum(case when month=1 then amount else 0 end) m1,
       sum(case when month=2 then amount else 0 end) m2,
       sum(case when month=3 then amount else 0 end) m3,
       sum(case when month=4 then amount else 0 end) m4
from table1
group by year;
  • 10
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值