首页 > 数据库技术 > 详细

SQL

时间:2020-01-18 23:10:29      阅读:92      评论:0      收藏:0      [点我收藏+]

一条语句查询三种类型的总数量。

select 

count(case when type=0 then 1 else null end) t1,

count(case when type=1 then 1 else null end) t2,

count(case when type=2 then 1 else null end) t3

from table;

SQL

原文:https://www.cnblogs.com/lightbc/p/12210367.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!