1 count() 计算总数2 max() 计算最大值3 sum() 求和4 avg() 求平均值 1 count() 计算总数count() 满足条件的记录行数`select count() from people where gender=1;` 2 max() 计算最大值select max(age) from people; 3 sum() 求和select sum(age) from people; 4 avg() 求平均值select avg(age) from people;