SQL之一条语句查询三种类型

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

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;
posted @ 2020-01-18 21:46  lightbc  阅读(530)  评论(0编辑  收藏  举报