select 字段 from 表 where 条件 group by 字段1(,字段2,字段3) select 字段 from 表 group by 字段1(,字段2,字段3)having 过滤条件 ps:where 是先过滤,再分组;having 是分组后再过滤 3. group by 的案例: 创建student表: create table student( id, int name,varchar(20) grade,varchar(20) salary,...