Solve the MySQL 5.7.9 version sql_mode=only_full_group_by problem

Solve the MySQL 5.7.9 version sql_mode=only_full_group_by problem

MySQL 5.7.9 version sql_mode=only_full_group_by issue

When using the GROUP BY statement to query, the error com.MySQL.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'col_user_6.a.START_TIME' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by occurs

Solution:

Execute SET GLOBAL sql_mode = ''; to change sql_mode to a mode other than only_full_group_by.

Verify that SELECT @@GLOBAL.sql_mode or SELECT @@sql_mode is in effect

SET sql_mode = 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE

The above is the editor's introduction to solving the MySQL 5.7.9 version sql_mode=only_full_group_by problem. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor 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:
  • Reasons and solutions for MySQL sql_mode modification not taking effect
  • Detailed explanation of MySQL sql_mode query and setting
  • Detailed explanation of viewing and setting SQL Mode in MySQL
  • Detailed explanation of sql_mode mode example in MySQL
  • Django2 connects to MySQL and model test example analysis
  • Detailed explanation on reasonable settings of MySQL sql_mode
  • MySQL sql_mode analysis and setting explanation
  • The pitfalls and solutions caused by the default value of sql_mode in MySQL 5.7
  • The perfect solution for MySql version problem sql_mode=only_full_group_by
  • Detailed explanation of SQL Mode usage in MySQL
  • mysql sql_mode="" function description
  • Detailed explanation of the use of MySQL sql_mode

<<:  JS realizes the calculation of the total price of goods in the shopping cart

>>:  Solution to nginx hiding version number and WEB server information

Recommend

Basic HTML directory problem (difference between relative path and absolute path)

Relative path - a directory path established based...

Solution to Apache cross-domain resource access error

In many cases, large and medium-sized websites wi...

How to display TIF format images in browser

The browser displays TIF format images Copy code T...

MySQL 8.0.14 installation and configuration method graphic tutorial (general)

MySQL service 8.0.14 installation (general), for ...

IE8 Developer Tools Menu Explanation

<br />This article has briefly explained the...

Implementation of MySQL master-slave status check

1. Check the synchronization status of A and B da...

Detailed explanation of the usage of scoped slots in Vue.js slots

Table of contents No slots Vue2.x Slots With slot...

Detailed steps for yum configuration of nginx reverse proxy

Part.0 Background The company's intranet serv...

MySQL 5.7.23 installation and configuration method graphic tutorial

This article records the installation tutorial of...

Table related arrangement and Javascript operation table, tr, td

Table property settings that work well: Copy code ...

nginx+tomcat example of accessing the project through the domain name

I was curious about how to access the project usi...

express project file directory description and detailed function description

app.js: startup file, or entry file package.json:...

Complete steps for uninstalling MySQL database

The process of completely uninstalling the MySQL ...

Cleverly use CSS3's webkit-box-reflect to achieve various dynamic effects

In an article a long time ago, I talked about the...