mysql 的group by 满足的规则要求
GROUP BY满足的规则:
所有select 字段,除了聚合函数中的字段,都必须出现在GROUP BY 中。
例如:SELECT name,age,max(salary) FROM t_employee GROUP BY name,age
salary 字段可以不用出现在 GROUP BY 中
GROUP BY满足的规则:
所有select 字段,除了聚合函数中的字段,都必须出现在GROUP BY 中。
例如:SELECT name,age,max(salary) FROM t_employee GROUP BY name,age
salary 字段可以不用出现在 GROUP BY 中