美文网首页
mysql遇见Expression #1 of SELECT l

mysql遇见Expression #1 of SELECT l

作者: 无味wy | 来源:发表于2021-07-15 00:29 被阅读0次

    报错如下:

    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
    

    问题出现的原因:

    MySQL 5.7.5及以上功能依赖检测功能。如果启用了ONLY_FULL_GROUP_BY SQL模式(默认情况下),MySQL将拒绝选择列表,HAVING条件或ORDER BY列表的查询引用在GROUP BY子句中既未命名的非集合列,也不在功能上依赖于它们。(5.7.5之前,MySQL没有检测到功能依赖关系,默认情况下不启用ONLY_FULL_GROUP_BY。有关5.7.5之前的行为的说明,请参见“MySQL 5.6参考手册”。)
    

    解决方法:
    打开MySQL配置文件

    vim /etc/mysql/conf.d/mysql.cnf
    在[mysqld]下面添加
    [mysqld]
    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

    service mysql restart
    

    相关文章

      网友评论

          本文标题:mysql遇见Expression #1 of SELECT l

          本文链接:https://www.haomeiwen.com/subject/dwtppltx.html