一条语句查询三种类型的总数量。
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