count(*):有多少行,对行做统计 count(x):列.... sum:和 avg:平均值 min:求最小值 max:求最大值 distinct:取出重复的值 count:计数 group by:分组 department_id:部门编号 having:对分组进行筛选 table:表 null:空表 组函数 ①:avg: 平均值 ②:count: 计数 ③:max: 最大值 ④:min: 最小值 ⑤:sum: 和 分组数据 例:select deparment_id,job_id,avg(…