mysql数据库-统计函数

后端 / 2021-08-23

count

返回行的总数

select count(*) frome tableName;
  • count(*): 返回满足条件的记录有多少个
  • count(列):满足条件的某列有多少个(会排除NULL)

sum

返回满足条件的行的和

select sun(columnName) from tableName;

avg

平均值

select avg(columnName) from tableName;

max

最大值

select max(columnName) from tableName;

min

最小值

select min(columnName) from tableName;