group by() 分组统计
select 列名 统计函数 from emp group by 列名;
使用group by 必须指定分组的条件,分组之外的条件不可以
having
having 与where的用法类似,放在分组函数之后使用