All we need is an easy explanation of the problem, so here it is.
A user of one of my product is using MySQL 10.7.3-MariaDB
.
This is the table creation:
CREATE TABLE IF NOT EXISTS negativity_accounts
(
id CHAR(36) NOT NULL PRIMARY KEY,
reports VARCHAR(1024) NOT NULL
);
When my product run :
REPLACE INTO table (id, reports) VALUES ('my-id', '');
It throw error: "Field ‘reports’ doesn’t have a default value".
This request works with all mysql versions that I tested for multiple years, so what’s the new behavior and how can I fix it without breaking all others DB ?
How to solve :
I know you bored from this bug, So we are here to help you! Take a deep breath and look at the explanation of your problem. We have many solutions to this problem, But we recommend you to use the first method because it is tested & true method that will 100% work for you.
Method 1
You probably have the EMPTY_STRING_IS_NULL
SQLMode variable set to true.
Note: Use and implement method 1 because this method fully tested our system.
Thank you 🙂
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0