sum(casewhenthen)(判断男女生的个数)
时间:2021-07-01 10:21:17
帮助过:106人阅读
判断类似一个班级的男生和女生的人数,用sum (cese when then )
代码如下:
select count(er.execute_result),
sum(case er.execute_result when 1 then 1 else 0 end) completed,
sum(case er.execute_result when 0 then 1 else 0 end) notCompleted
from taw_wp_execute_result er ;
代码如下:
select
(case when er.execute_result>0 then 'a'
else 'b'
end
)
from taw_wp_execute_result er ;
您可能感兴趣的文章:
- MySQL 的CASE WHEN 语句使用说明
- SQL集合函数中case when then 使用技巧
- sql学习之CASE WHEN THEN ELSE END的用法
- MySQL的CASE WHEN语句的几个使用实例
- MySQL中使用case when 语句实现多条件查询的方法
- sql 中 case when 语法使用方法
- 浅析SQL语句行列转换的两种方法 case...when与pivot函数的应用
- mysql case when group by 实例详解
- 关于case when语句的报错问题详解
- MySQL排序中使用CASE WHEN的方法示例