当前位置:Gxlcms > 数据库问题 > Mysql CASE WHEN 用法

Mysql CASE WHEN 用法

时间:2021-07-01 10:21:17 帮助过:3人阅读

select
sum(1) as col_0_0_, sum(case vciinfo.useable when -1 then 1 else 0 end) as col_1_0_,
sum(case when vciinfo.activatetime is null then 0 else 1 end) as col_2_0_
from vci_info vciinfo

这是一个用case when 实现统计表中不同状态数据数量的sql语句

这里要注意的是 判断字段是否为空用 case when vciinfo.activatetime is null   

判断值 case vciinfo.useable when -1

 

when 的位置不同

Mysql CASE WHEN 用法

标签:nbsp   状态   null   sum   sql   不同   else   from   end   

人气教程排行