zoukankan      html  css  js  c++  java
  • Expression #1 of ORDER BY clause is which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

     问题

    linux下安装mysql,每次执行sql语句都报错。

    本次执行的命令如下:

    update flow_station set station_name='批次绑定1'
     WHERE id = 430 and flow_id= 111 ; update flow_station set station_name='组装绑定1'
     WHERE id = 431 and flow_id= 111 ; update flow_station set station_name='批次绑定2'
     WHERE id = 432 and flow_id= 111 ; update flow_station set station_name='组装绑定2'
     WHERE id = 433 and flow_id= 111;

    虽然最终成功还是报以下错误:

    Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' 
    which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

    查询mysql版本

    SELECT version()

    结果

    5.7.30-0ubuntu0.16.04.1

    解决方法

    sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf

    编辑文件,在[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

    重启服务

    sudo service mysql restart

    转载自:https://blog.csdn.net/u014520745/article/details/76056170

  • 相关阅读:
    120.三角形最短路径(leetcode)
    Python Pycharm中灵活运用debugger
    POJ 1284
    POJ 2407
    POJ 1811
    HDU 1164
    HDU 4228
    HDU 2521
    HDU 4133
    ZOJ 2562 反素数
  • 原文地址:https://www.cnblogs.com/passedbylove/p/13175205.html
Copyright © 2011-2022 走看看