Detailed explanation of unique constraints and NULL in MySQL

Detailed explanation of unique constraints and NULL in MySQL

Preface

A requirement I had previously made, to simplify the description, is to receive MQ messages from other groups and then insert a record into the database. In order to prevent them from sending repeated messages and inserting multiple duplicate records, a unique index is added to several columns in the table.

CREATE UNIQUE INDEX IDX_UN_LOAN_PLAN_APP ON testTable (A, B, C);

At this time, columns A, B, and C do not allow NULL values, and the uniqueness constraint also works.

Later, due to changes in requirements, the previous uniqueness constraint was modified and one more column was added. (I won’t go into details why it was added).

ALTER TABLE testTable
DROP INDEX IDX_UN_LOAN_PLAN_APP,
ADD UNIQUE KEY `IDX_UN_LOAN_PLAN_APP` (A, B, C, D);

The newly added D is of type datetime, allows NULL, and has a default value of NULL. The reason why the default value is NULL is that not all records have this time. If a Magic Value (such as '1970-01-01 08:00:00') is forcibly set as the default value, it will look strange.

Blue Queen. . . That's when things go wrong. After adding D, the uniqueness constraint is basically invalid.

Insert into testTable (A,B,C,D) VALUES (1,2,3,NULL); --- OK
Insert into testTable (A,B,C,D) VALUES (1,2,3,NULL); --- OK
Insert into testTable (A,B,C,D) VALUES (1,2,3,NULL); --- OK

The above three SQL statements can all be executed successfully, and there will be multiple identical records in the database. According to our previous idea, a 'Duplicate key' exception should be thrown when executing the last two SQL statements.

Later, I checked and found that the official MySQL documentation has already clearly stated this point. Unique indexes allow multiple NULL values ​​to exist:

A UNIQUE index creates a constraint such that all values ​​in the index must be distinct. An error occurs if you try to add a new row with a key value that matches an existing row. For all engines, a UNIQUE index allows multiple NULL values ​​for columns that can contain NULL.

It can also be seen from the table below that no matter what type of storage engine is used, multiple NULLs are allowed when creating a unique key. . . .

If you think about it, it is actually quite reasonable. After all, in MySQL, NULL represents "unknown". In SQL, any value compared with NULL returns NULL instead of TRUE, even NULL and NULL comparison also returns NULL.

So the only solution is to fix it. . . The solution is quite simple and crude. I just refreshed the online data, set "1970-01-01 08:00:00" as the default value, and then changed the column to not allow NULL. Ahem.

Many people have discussed this issue on the MySQL official website. Some people think it is a MySQL bug, while others think it is a feature. Attached is the link.

MySQL Bugs: #8173: unique index allows duplicates with null values

Summarize

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of how to write mysql not equal to null and equal to null
  • Mysql NULL caused the pit
  • Detailed explanation of the usage of NULL and NOT NULL when creating tables in MySQL
  • Summary of knowledge points related to null (IFNULL, COALESCE and NULLIF) in MySQL
  • Solution to the problem of null column in NOT IN filling pit in MySQL
  • Instance method for mysql string concatenation and setting null value
  • In-depth explanation of the impact of NULL on indexes in MySQL
  • Should nullable fields in MySQL be set to NULL or NOT NULL?
  • Detailed explanation of IFNULL() and COALESCE() functions to replace null in MySQL
  • MySQL NULL data conversion method (must read)
  • Distinguish between null value and empty character ('''') in MySQL

<<:  Calendar effect based on jQuery

>>:  How to create, save, and load Docker images

Recommend

DD DT DL tag usage examples

We usually use the <ul><li> tags, but ...

Pure CSS to achieve cool neon light effect (with demo)

I have recently been following the CSS Animation ...

Example analysis of the usage of the new json field type in mysql5.7

This article uses an example to illustrate the us...

Detailed explanation of using top command to analyze Linux system performance

Introduction to Linux top command The top command...

Stop using absolute equality operators everywhere in JS

Table of contents Overview 1. Test for null value...

Native js implementation of slider interval component

This article example shares the specific code of ...

Detailed examples of Zabbix remote command execution

Table of contents one. environment two. Precautio...

How to solve the mysql insert garbled problem

Problem description: When inserting Chinese chara...

WeChat applet implements simple calculator function

This article shares the specific code for the WeC...

Docker installation rocketMQ tutorial (most detailed)

RocketMQ is a distributed, queue-based messaging ...

What is ssh port forwarding? What's the use?

Table of contents Preface 1. Local port forwardin...

How to run py files directly in linux

1. First create the file (cd to the directory whe...