本文主要是介绍MySQL: Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'sss,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
今天在执行MySQL中sql语句的时候报错了,执行的sql语句:
SELECTprov_desc,area_desc,month_id,MAX(total_fee)AS max_total,
FROM
sss
WHEREprov_id = '075'
OR prov_id IN('017')
AND month_id IN('201207')
GROUP BYprov_id,prov_desc,prov_ord,area_desc,area_ord
HAVINGMAX(total_fee)> 100
ORDER BYprov_ord DESC,area_ord
错误提示如下:
Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'sss.month_id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
认真看错误的提示发现是在group by中的字段比较selelct中的字段差了一个month_id, 而正好是month_id报错。this is incompatible with sql_mode=only_full_group_by
这句话提示了这违背了mysql的规则,only fully group by,也就是说在执行的时候先分组,根据查询的字段(select的字段)在分组的内容中取出,所以查询的字段全部都应该在group by分组条件内;一种情况例外,查询字段中如果含有聚合函数的字段不用包含在group by中,就像我上面的MAX(total_fee),至于为什么,我也不抬明白。
后来发现Order by排序条件的字段也必须要在group by内,看此大神的博文解释之后豁然开朗,排序的字段也是从分组的字段中取出。 不明白的可以去看一下。
解决办法:select字段必须都在group by分组条件内(含有函数的字段除外)。(如果遇到order by也出现这个问题,同理,order by字段也都要在group by内)。
这篇关于MySQL: Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'sss的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!