MySql inserts data successfully but reports [Err] 1055 error solution

MySql inserts data successfully but reports [Err] 1055 error solution

1. Question:

I have been doing insert operations these days. The MySQL version is 5.7. Although the insert is successful, an error [Err] 1055 is reported. The details are as follows:

2.Solution:

In the Linux environment, go to my.cnf with vim and add the following statement:

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

Finally save and exit, restart mysql

3. Testing

See if it is solved

You can see that there is no error.

Summarize

The above is the solution that I introduced to you when MySql successfully inserts data but reports [Err] 1055 error. 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:
  • Solve the group by query problem after upgrading Mysql to 5.7
  • The perfect solution for MySql version problem sql_mode=only_full_group_by
  • Detailed explanation of count(), group by, order by in MySQL
  • Solution to MySQL 5.7 group by new feature error 1055
  • How to use GROUP BY in MySQL to get the first N records
  • Analysis of MySQL: single table distinct, multi-table group by query to remove duplicate records
  • In-depth analysis of the order by and group by sequence issues in MySQL
  • Detailed tutorial on using Group By in SQL

<<:  Steps to use autoconf to generate Makefile and compile the project

>>:  Example code of vue + element ui to realize player function

Recommend

Vue implements student management function

This article example shares the specific code of ...

CSS example code to hide the scroll bar and scroll the content

Preface When the HTML structure of a page contain...

Should I use UTF-8 or GB2312 encoding when building a website?

Often when we open foreign websites, garbled char...

How to use and limit props in react

The props of the component (props is an object) F...

How to build ssh service based on golang image in docker

The following is the code for building an ssh ser...

Detailed explanation of Vue form binding and components

Table of contents 1. What is two-way data binding...

The whole process record of Vue export Excel function

Table of contents 1. Front-end leading process: 2...

Mybatis statistics of the execution time of each SQL statement

background I am often asked about database transa...

4 flexible Scss compilation output styles

Many people have been told how to compile from th...

How to use VUE to call Ali Iconfont library online

Preface Many years ago, I was a newbie on the ser...

Using CSS3 to create header animation effects

Netease Kanyouxi official website (http://kanyoux...

5 Ways to Send Emails in Linux Command Line (Recommended)

When you need to create an email in a shell scrip...