标签:解决 blog 没有 fun href 聚合 mys misc ...
原文:mysql 5.7 或以上版本 group by 问题记录mysql 5.7或以上的新版本sql_mode 默认开启开 ONLY_FULL_GROUP_BY,如果 select 中出现的字段,没有使用聚合函数,或不存在group by中就会提示,this is incompatible with sql_mode=only_full_group_by。
解决方法:
1. 去除sql_mode 中的 ONLY_FULL_GROUP_BY.
2. 如果select 的字段不存group by中,可以用使any_value函数获取,例如 select any_value(id) as id.....
参考:
https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html#function_any-value
标签:解决 blog 没有 fun href 聚合 mys misc ...
原文地址:https://www.cnblogs.com/lonelyxmas/p/10516113.html