Where the open source database community meets: Use code PERCONA75 and secure your spot for Percona Live.  Register

Upgrading to MySQL 5.7? Beware of the new STRICT mode

October 18, 2016
Author
Alexander Rubin
Share this Post:

STRICT modeThis blog post discusses the ramifications of STRICT mode in MySQL 5.7.

In short

By default, MySQL 5.7 is much “stricter” than older versions of MySQL. That can make your application fail. To temporarily fix this, change the SQL_MODE to NO_ENGINE_SUBSTITUTION (same as in MySQL 5.6):

MySQL 5.7, dates and default values

The default SQL_MODE in MySQL 5.7 is:

That makes MySQL operate in “strict” mode for transactional tables.

“Strict mode controls how MySQL handles invalid or missing values in data-change statements such as INSERT or UPDATE. A value can be invalid for several reasons. For example, it might have the wrong data type for the column, or it might be out of range. A value is missing when a new row to be inserted does not contain a value for a non-NULL column that has no explicit DEFAULT clause in its definition. (For a NULL column, NULL is inserted if the value is missing.) Strict mode also affects DDL statements such as CREATE TABLE.”

http://dev.mysql.com/doc/refman/5.7/en/sql-mode.html#sql-mode-strict

That also brings up an interesting problem with the default value for the date/datetime column. Let’s say we have the following table in MySQL 5.7, and want to insert a row into it:

The event_date does not have a default value, and we are inserting a row without a value for event_date. That causes an error in MySQL 5.7. If we can’t use NULL, we will have to create a default value. In strict mod,e we can’t use “0000-00-00” either:

We have to use a real date:

Or, a most likely much better approach is to change the application logic to:

    • allow NULLs, or
    • always insert the real dates (i.e. use NOW() function), or
    • change the table field to timestamp and update it automatically if no value has been assigned
Further reading

Read the Morgan Tocker’s article on how to transition to MySQL 5.7, and check the full sql_mode documentation

0 0 votes
Article Rating
Subscribe
Notify of
guest

10 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Paul
Paul
9 years ago

Are there any tools to help migrate a codebase to start using mysql’s STRICT mode?

Ideally a permissive approach, but one which would log strict mode warnings to disk so they could be reviewed?

aniketkushwaha
8 years ago

The problem is due to microseconds added in default value in mysql new versions. See http://tekina.info/default-datetime-timestamp-issue-mysql-upgrading-5-6/ for solutions.

Georgi Todorov
8 years ago

Thank you Alexander!
Helpful article.

Napoleon
Napoleon
8 years ago

Thanks,
Alex you saved my day!!!

Joerg
Joerg
7 years ago

Many thanks!

Tongpoon
Tongpoon
7 years ago

I see and microseconds are important to us, regular humans. I fail to see how but then that’s just me, a normal human being. The boys at MySQL are obviously not from this galaxy and are superbeings. I’m trying to change the field to VARCHAR but guess what PHPMyAdmin (another bright light in the chandeleer) gives error on the other date field. So if you have 2 date fields you cannot even change one of them. Great guys. Keep up the good work!

Alejandro de la Barra
Alejandro de la Barra
6 years ago
Reply to  Tongpoon

You need to eliminate NO_ZERO_DATE, and other options reletive to zeros.

Jozsef
Jozsef
6 years ago

Mysql 5.7 causes only problems. The strict mode sucks. It must be an option to be choosed.

Alejandro de la Barra
Alejandro de la Barra
6 years ago
Reply to  Jozsef

??

Far
Enough.

Said no pioneer ever.
MySQL, PostgreSQL, InnoDB, MariaDB, MongoDB and Kubernetes are trademarks for their respective owners.
© 2026 Percona All Rights Reserved