欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL的count函数的用法介绍

程序员文章站 2023-10-10 22:11:36
示例:查询id大于10和id等于3的统计。 一般写法 select count(case when id>10 then id end),count(case whe...

示例:查询id大于10和id等于3的统计。

一般写法
select count(case when id>10 then id end),count(case when id=3 then id end ) from test;

非主流写法:
select count(id>10 or null),count(id=3 or null) from test;

去重统计:

select count(distinct username) from user;