有时写的sql语句中用到聚合函数时 会报“不是group by 表达式” 如下:
select id,name,avg(age) from student group by id;-----此时一定会报上面的错误的;
因为使用聚合函数时, 聚合函数以外的所有 查询字段都应该被 group by;