数据库
首页 > 数据库> > mysql – 尽管sql_mode为空,但存储过程引发“与sql_mode = only_full_group_by不兼容”

mysql – 尽管sql_mode为空,但存储过程引发“与sql_mode = only_full_group_by不兼容”

作者:互联网

我有一个在MySQL 5.6上运行良好的存储过程.在最近的服务器迁移期间,我们升级到MySQL 5.7.19.

我的存储过程现在抛出错误:

SELECT列表的表达式#1不在GROUP BY子句中,并且包含非聚合列’utility-monitor.daily_readings.building_id’,它在功能上不依赖于GROUP BY子句中的列;这与sql_mode = only_full_group_by不兼容:CALL monthly_readings(2017,1,NULL,1,1))

我已经通过/var/mysql/my.cnf文件将sql_mode设置为“”,重新启动了mysql服务并通过控制台登录,通过SELECT @@ sql_mode确认sql_mode是空白的;

尽管如此,当我尝试运行我的存储过程时,我仍然收到上述错误.

接下来我该怎么做才能继续排除此错误的来源?

解决方法:

根据documentation,MySQL使用创建过程时处于活动状态的sql模式:

MySQL stores the sql_mode system variable setting in effect when a routine is created or altered, and always executes the routine with this setting in force, regardless of the current server SQL mode when the routine begins executing.

因此,在激活不同模式(或通过语法修复组)的情况下重新创建过程(或全部,因为它可能不是唯一受影响的过程).虽然文档中提到过,但改变程序是不够的.您应该考虑不为此永久更改sql模式(尽管您可能还有其他不兼容的代码).

标签:mysql-5-7,mysql
来源: https://codeday.me/bug/20190828/1750976.html