Solution to ONLY_FULL_GROUP_BY error in Mysql5.7 and above

Solution to ONLY_FULL_GROUP_BY error in Mysql5.7 and above

Recently, during the development process, the MySQL database connected to the project development environment is Alibaba Cloud's database, and the Alibaba Cloud database version is 5.6. The mysql in the test environment is 5.7 installed by myself. Therefore, during the development process, some friends accidentally wrote the SQL statement related to group by. It runs normally in the development environment, but anomalies are found in the test environment.

Cause analysis: The MySQL 5.7 version sets the mysql sql_mode = only_full_group_by attribute by default, which causes an error.

Among them, ONLY_FULL_GROUP_BY is the culprit of this error. For the group by aggregation operation, if the column in the select does not appear in the group by, then the SQL is illegal because the column is not in the group by clause. Therefore, the database with sql_mode=only_full_group_by set will report an error when using group by.

The test environment downloaded and installed the latest version of MySQL 5.7.x. The only_full_group_by mode was enabled by default. However, after enabling this mode, the original group by statement reported an error, and then it was removed.

Once only_full_group_by is turned on, it feels like group by will become the same as distinct, which can only obtain the field information affected by it, and cannot coexist with other fields not affected by it. In this way, the function of group by will become very narrow.

It is better to enable only_full_group_by mode. Because there is a function in MySQL: any_value(field) allows the appearance of non-grouping fields (which has the same effect as turning off only_full_group_by mode).

1. Check sql_mode

SELECT @@sql_mode;

The queried value is:

ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION

2. Remove ONLY_FULL_GROUP_BY and reset the value.

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';

3. The above changes the global sql_mode, which is valid for newly created databases. For an existing database, you need to execute it under the corresponding data

SET sql_mode = 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';

The above method is still invalid after restarting the MySQL database, and the following method is still effective after restarting

Find the MySQL configuration file, /etc/my.cnf file on the Linux system, query the sql_mode field, I did not find this keyword in the configuration file, so I added it manually:

sql_mode = STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION

One thing to note is that it must be added in the [mysqld] configuration, so that it will take effect after restarting mysql. Exit the database: exit, restart command:

service mysqld restart

Refresh the page and the error message disappears. The problem is solved successfully. Connect to the database again to view the sql_mode configuration. Select @@sql_mode:

STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION

This is the end of this article about the solution to the ONLY_FULL_GROUP_BY error in Mysql5.7 and above. For more related Mysql5.7 ONLY_FULL_GROUP_BY content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL 8.0.24 version installation and configuration method graphic tutorial
  • Some improvements in MySQL 8.0.24 Release Note
  • Implementation of MySQL's MVCC multi-version concurrency control
  • The best solution for resetting the root password of MySQL 8.0.23
  • About the configuration problem of MyBatis connecting to MySql8.0 version
  • How to solve the problem that Seata cannot use MySQL 8 version
  • Detailed explanation of DBeaver connecting to MySQL version 8 and above and solving possible problems
  • Bugs encountered when using mybatis-generator with mysql8.0.3 in IDEA
  • Solution to the garbled code problem in MySQL 5.x
  • Detailed tutorial on installing MySQL 8.0.20 database on CentOS 7
  • Solve the installation problem of mysql8.0.19 winx64 version
  • Django 2.2 and PyMySQL version compatibility issues
  • Steps to install MySQL 5.7 in binary mode and optimize the system under Linux
  • Installation of various versions of MySQL 8.0.18 and problems encountered during installation (essence summary)
  • Super detailed teaching on how to upgrade the version of MySQL

<<:  Vue implements sending emoticons in chat box

>>:  Nginx installation error solution

Recommend

Vue component library ElementUI realizes the paging effect of table list

ElementUI implements the table list paging effect...

VMware vSAN Getting Started Summary

1. Background 1. Briefly introduce the shared sto...

Usage of Linux userdel command

1. Command Introduction The userdel (user delete)...

Best Practices for Sharing React Code

When any project develops to a certain complexity...

React antd tabs switching causes repeated refresh of subcomponents

describe: When the Tabs component switches back a...

How to configure Jupyter notebook in Docker container

Jupyter notebook is configured under the docker c...

How to quickly build a LAMP environment on CentOS platform

This article uses an example to describe how to q...

MySQL 8.0.22.0 download, installation and configuration method graphic tutorial

MySQL 8.0.22 download, installation and configura...

How to use module fs file system in Nodejs

Table of contents Overview File Descriptors Synch...

Usage and execution process of http module in node

What is the role of http in node The responsibili...

Let's deeply understand the event object in js

We know that the commonly used events in JS are: ...