mysql函数count和count的区别
发布网友
发布时间:2022-04-08 01:43
我来回答
共2个回答
懂视网
时间:2022-04-08 06:04
GROUP_CONCAT(field) FROM table_name WHERE CONDITION GROUP BY field;
mysql的统计函数
标签:
热心网友
时间:2022-04-08 03:12
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;
--------------------------------------------------------------------
以上测试通过