mysql sql_mode 导致 this is incompatible with sql_mode=only_full_group_by

linux服务器上的mysql 运行一切正常

在本地mysql 的时候报错

Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: In aggregated query without GROUP BY, expression #9 of SELECT list contains nonaggregated column 'yd_2.al.level'; this is incompatible with sql_mode=only_full_group_by

重点是这句this is incompatible with sql_mode=only_full_group_by

翻译过来大概是在  sql_mode=only_full_group_by 下是不相容的

于是想办法修改 sql_mode ,

我先看了下自己的mysql版本

mysql sql_mode 导致 this is incompatible with sql_mode=only_full_group_by_第1张图片

是5.7

然后查看当前sql_mode 

mysql sql_mode 导致 this is incompatible with sql_mode=only_full_group_by_第2张图片

修改my.cnf(windows下是my.ini)配置文件

sql_mode=STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION

重启mysql服务  就可以了  

在积累以上经验之前还试过很多用sql 语句修改sql_model的   没有成功,至少在我5.7上没有成功!

你可能感兴趣的:(数据库)