reason: MySQL 5.7.5 and up implements detection of functional dependencies. If the only_full_group_by SQL mode is enabled (which it is by default), MySQL rejects queries whose select lists, conditions, or order lists refer to nonaggregate columns that are not named in the group by without being functionally dependent on them. (Prior to 5.7.5, MySQL did not detect feature dependencies and only_full_group_by was not enabled by default. See the MySQL 5.6 Reference Manual for a description of the pre-5.7.5 behavior.) Execute the following command to view the content of sql_mode: mysql> SHOW SESSION VARIABLES; mysql> SHOW GLOBAL VARIABLES; mysql> select @@sql_mode; It can be seen that the values of sql_mode for session and global are: 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 only_full_group_by description: only_full_group_by: This option uses the same group rules as Oracle. The selected columns must be in the group or be aggregate columns (SUM, AVG, MAX, MIN). In fact, I personally feel that this configuration is similar to distinct, so just remove it. solve: 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';<br data-filtered="filtered">set session sql_mode='STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';<br data-filtered="filtered"> Summarize The above is the solution to the grouping error Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated in MySQL version greater than 5.7. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Detailed explanation of nginx forward proxy and reverse proxy
>>: JS implements the rock-paper-scissors game
1. Deploy nginx service in container The centos:7...
Since there is a button in my company's produ...
In order to solve the problem mentioned last time...
I recently used Docker to upgrade a project. I ha...
If there is a backup, it is very simple. You only...
First, let me introduce the meaning of some field...
Disadvantages of Tables 1. Table takes up more byt...
Table of contents Creating HTML Pages Implement t...
1. Create a centos7.6 system and optimize the sys...
I've been using redis recently and I find it ...
This article example shares the specific code of ...
Good morning everyone, I haven’t updated my artic...
Table of contents What is a mind map? How to draw...
Original link https://github.com/XboxYan/no… A bu...
Table of contents 1. Differences and characterist...