mysql查看列状态_mysql统计一个字段的多种状态

假如我有下面的表:

ID    Item           status            updatetime    author

1    a        1        2014-01-02     Mike

2    a        1        2014-02-01     Jack

3    b        2        2014-01-10     John

4    b        1        2014-10-10     Ben

5    b        2        2014-01-11     Sam

6    c        3        2014-01-02     Aron

7    c        1        2014-11-01     Aron

8    c        1        2014-10-20     Max

9    d        3        2014-10-20     Mike

想统计对于每一个item,每一种status的个数为多少,同时记录器最新的时间和作者,结果如下:

Item    status_1    status_2    status_3    Latestupdate    author

a        2             0          0         2014-02-01        Jack

b        1             2          0         2014-10-10        Ben

c        2             0          1         2014-11-01        Aron

d        0             0          1         2014-10-20        Mike

select item,

sum(case when status = 1 then 1 else 0 end) as status_1,

sum(case when status = 2 then 1 else 0 end) as status_2,

sum(case when status = 2 then 1 else 0 end) as status_3

max(update time) as Latestupdate,

author

from table

group by item, status_1, status_2, status_3

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值