Find the problem After upgrading MySQL to MySQL 5.7 recently, when performing some group by queries, such as the following SELECT *, count(id) as count FROM `news` GROUP BY `group_id` ORDER BY `inputtime` DESC LIMIT 20 The following error will be reported: SELECT list is not in GROUP BY clause and contains nonaggregated column 'news.id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by. Cause Analysis The reason is in mysql 5.7 mode. ONLY_FULL_GROUP_BY is enabled by default. ONLY_FULL_GROUP_BY is a sql_mode provided by MySQL, which is used to check the validity of the GROUP BY clause of the SQL statement. http://dev.mysql.com/doc/refman/5.7/en/sql-mode.html#sqlmode_only_full_group_by This is incompatible Later I found that the fields of the Order by sorting condition must also be in the group by, and the sorting fields are also taken from the grouping fields. If you don’t understand, you can go and take a look. Solution: 1. Remove ONLY_FULL_GROUP_BY to execute SQL normally. 2. If ONLY_FULL_GROUP_BY is not selected, the select fields must all be included in the group by conditions (except for fields containing functions). (If this problem also occurs when you encounter order by, similarly, the order by fields must also be in group by). 3. Use This function is useful for GROUP BY queries when the ONLY_FULL_GROUP_BY SQL mode is enabled, for cases when MySQL rejects a query that you know is valid for reasons that MySQL cannot determine. The function return value and type are the same as the return value and type of its argument, but the function result is not checked for the ONLY_FULL_GROUP_BY SQL mode. The above SQL statement can be written as SELECT ANY_VALUE(id)as id,ANY_VALUE(uid) as uid ,ANY_VALUE(username) as username,ANY_VALUE(title) as title,ANY_VALUE(author) as author,ANY_VALUE(thumb) as thumb,ANY_VALUE(description) as description,ANY_VALUE(content) as content,ANY_VALUE(linkurl) as linkurl,ANY_VALUE(url) as url,ANY_VALUE(group_id) as group_id,ANY_VALUE(inputtime) as inputtime, count(id) as count FROM `news` GROUP BY `group_id` ORDER BY ANY_VALUE(inputtime) DESC LIMIT 20 I chose the third method. Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM. You may also be interested in:
|
<<: Linux editing start, stop and restart springboot jar package script example
>>: Vue custom v-has instruction to implement button permission judgment
I searched on Baidu. . Some people say to use the...
Table of contents Preface Analysis and solution o...
Table of contents Overview Environment Preparatio...
Development Trends: html (Hypertext Markup Languag...
My page today also had garbled characters, so I s...
Use native JS to write a nine-square grid to achi...
A web designer's head must be filled with a lo...
1. Background Generally, in a data warehouse envi...
Now many mobile phones have the function of switc...
Many of my friends may encounter a problem and do...
Problem Reproduction Alibaba Cloud Server, using ...
DCL (Data Control Language): Data control languag...
This article uses an example to describe how to q...
The layui table has multiple rows of data. Throug...
When we add borders to table and td tags, double ...