mysql 如何使用count()函数计算两个不同条件的值
1个回答
展开全部
create table test (id int);
insert into test values(1),(2),(3),(4),(5),(6),(7),(8);
例如:查询id大于4和id=1的统计
一般写法
select count(case when id>4 then id end),count(case when id=1 then id end ) from test;
非主流写法:
select count(id>4 or null),count(id=1 or null) from test;
--------------------------------------------------------------------
以上测试通过
insert into test values(1),(2),(3),(4),(5),(6),(7),(8);
例如:查询id大于4和id=1的统计
一般写法
select count(case when id>4 then id end),count(case when id=1 then id end ) from test;
非主流写法:
select count(id>4 or null),count(id=1 or null) from test;
--------------------------------------------------------------------
以上测试通过
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询