The perfect solution for MySql version problem sql_mode=only_full_group_by

The perfect solution for MySql version problem sql_mode=only_full_group_by

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 @@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 the following command 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 is the perfect solution to the MySql version problem sql_mode=only_full_group_by introduced by the editor. 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
  • Solve the MySQL 5.7.9 version sql_mode=only_full_group_by problem
  • Detailed explanation of SQL Mode usage in MySQL
  • mysql sql_mode="" function description
  • Detailed explanation of the use of MySQL sql_mode

<<:  How to use JSX to implement Carousel components (front-end componentization)

>>:  Explanation of the new feature of Hadoop 2.X, the recycle bin function

Recommend

How to use ss command instead of netstat in Linux operation and maintenance

Preface When operating and managing Linux servers...

Detailed explanation of redundant and duplicate indexes in MySQL

MySQL allows you to create multiple indexes on th...

52 SQL statements to teach you performance optimization

1. To optimize the query, try to avoid full table...

vue+element-ui implements the head navigation bar component

This article shares the specific code of vue+elem...

Example of how to achieve ceiling effect using WeChat applet

Table of contents 1. Implementation 2. Problems 3...

Summary of practical experience of HTML knowledge points

1. The table tag is table, tr is row, td is cell, ...

Minio lightweight object storage service installation and browser usage tutorial

Table of contents Introduction Install 1. Create ...

DIV common attributes collection

1. Property List Copy code The code is as follows:...

HTML iframe usage summary collection

Detailed Analysis of Iframe Usage <iframe frame...

How to deploy MongoDB container with Docker

Table of contents What is Docker deploy 1. Pull t...

How to use Navicat to operate MySQL

Table of contents Preface: 1. Introduction to Nav...

Summary of CSS usage tips

Recently, I started upgrading my blog. In the proc...