-
Notifications
You must be signed in to change notification settings - Fork 967
mysql配置说明
悟空CRM/72crm edited this page Apr 7, 2021
·
1 revision
在mysql5.7以及以上的版本中,需要关闭mysql的sql_mode="ONLY_FULL_GROUP_BY" 属性 ,
如果在项目中提示
`Expression #2 of SELECT list is not in GROUP BY clause........ which is not functionally dependent on columns in
GROUP BYclause;this is incompatible with sql_mode=only_full_group_by`类似异常,
则代表需要修改mysql的sql_mode配置。
1、 命令解决
在mysql中执行命令:
set @@GLOBAL.sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION;
注:此种方式的修改,在mysql 重启后就会失效。
2、 修改 my.ini 文件(推荐)
需修改mysql配置文件,通过手动添加sql_mode的方式强制指定不需要ONLY_FULL_GROUP_BY属性,
在 [mysqld] 下面添加代码:
sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION
重启mysql
注:
1、不同的系统,mysql 的配置文件名以及路径不同
2、Mac或Linux文件 /etc/my.cnf
3、windows 在数据库安装目录下的 my.ini