CHECK constraints in MySQL
MySQL (really) supports CHECK CONSTRAINT since version 8.0.16.
In this article I will show you 2 things:
- An elegant way to simulate check constraint in MySQL 5.7 & 8.0.
- How easy and convenient it is to use CHECK constraints starting from MySQL 8.0.16.
Please note that this article is strongly inspired by Mablomy‘s blog post: CHECK constraint for MySQL – NOT NULL on generated columns.
I’m using the optimized MySQL Server Docker images, created, maintained and supported by the MySQL team at Oracle.
For clarity I chose MySQL 8.0.15 for the check constraint hack and obviously 8.0.16 for the “real” check constraint implementation.
Deployment of MySQL 8.0.15 & MySQL 8.0.16:
$ docker run --name=mysql-8.0.15 -e MYSQL_ROOT_PASSWORD=unsafe -d mysql/mysql-server:8.0.15
d4ce35e429e08bbf46a02729e6667458e2ed90ce94e7622f1342ecb6c0dfa009
$ docker run --name=mysql-8.0.16 -e MYSQL_ROOT_PASSWORD=unsafe -d mysql/mysql-server:8.0.16
d3b22dff1492fe6cb488a7f747e4709459974e79ae00b60eb0aee20546b68a0f
Note:
Obviously using a password on the command line interface can be insecure.
Please read the best practices of deploying MySQL on Linux with Docker.
Example 1
Check constraints hack
$ docker exec -it mysql-8.0.15 mysql -uroot -p --prompt='mysql-8.0.15> '
Enter password:
mysql-8.0.15> CREATE SCHEMA test;
Query OK, 1 row affected (0.03 sec)
mysql-8.0.15> USE test
Database changed
mysql-8.0.15> SELECT VERSION();
+-----------+
| VERSION() |
+-----------+
| 8.0.15 |
+-----------+
mysql-8.0.15>
CREATE TABLE checker_hack (
i tinyint,
i_must_be_between_7_and_12 BOOLEAN
GENERATED ALWAYS AS (IF(i BETWEEN 7 AND 12, true, NULL))
VIRTUAL NOT NULL
);
As you can see, the trick is to use Generated Columns, available since MySQL 5.7 and the flow control operator IF where the check condition is put.
mysql-8.0.15> INSERT INTO checker_hack (i) VALUES (11);
Query OK, 1 row affected (0.03 sec)
mysql-8.0.15> INSERT INTO checker_hack (i) VALUES (12);
Query OK, 1 row affected (0.01 sec)
mysql-8.0.15> SELECT i FROM checker_hack;
+------+
| i |
+------+
| 11 |
| 12 |
+------+
2 rows in set (0.00 sec)
As expected, values that respect the condition (between 7 and 12) can be inserted.
mysql-8.0.15> INSERT INTO checker_hack (i) VALUES (13);
ERROR 1048 (23000): Column 'i_must_be_between_7_and_12' cannot be null
mysql-8.0.15> SELECT i FROM checker_hack;
+------+
| i |
+------+
| 11 |
| 12 |
+------+
2 rows in set (0.00 sec)
Outside the limits, an error is raised.
We have our “check constraint” like feature 🙂
Check constraint since MySQL 8.0.16
$ docker exec -it mysql-8.0.16 mysql -uroot -p --prompt='mysql-8.0.16> '
Enter password:
mysql-8.0.16> CREATE SCHEMA test;
Query OK, 1 row affected (0.08 sec)
mysql-8.0.16> USE test
Database changed
mysql-8.0.16> SELECT VERSION();
+-----------+
| VERSION() |
+-----------+
| 8.0.16 |
+-----------+
mysql-8.0.16>
CREATE TABLE checker (
i tinyint,
CONSTRAINT i_must_be_between_7_and_12 CHECK (i BETWEEN 7 AND 12 )
);
Since MySQL 8.0.16, the CHECK keyword do the job.
I would recommend to name wisely your constraint.
The syntax is:
[CONSTRAINT [symbol]] CHECK (expr) [[NOT] ENFORCED]
From there, the following is rather obvious:
mysql-8.0.16> INSERT INTO checker (i) VALUES (11);
Query OK, 1 row affected (0.02 sec)
mysql-8.0.16> INSERT INTO checker (i) VALUES (12);
Query OK, 1 row affected (0.03 sec)
mysql-8.0.16> SELECT i FROM checker;
+------+
| i |
+------+
| 11 |
| 12 |
+------+
2 rows in set (0.00 sec)
mysql-8.0.16> INSERT INTO checker (i) VALUES (13);
ERROR 3819 (HY000): Check constraint 'i_must_be_between_7_and_12' is violated.
mysql-8.0.16> SELECT i FROM checker;
+------+
| i |
+------+
| 11 |
| 12 |
+------+
2 rows in set (0.00 sec)
Easy! 🙂
Example 2
You can check a combination of columns.
Check constraints hack
mysql-8.0.15>
CREATE TABLE squares_hack (
dx DOUBLE,
dy DOUBLE,
area_must_be_larger_than_10 BOOLEAN
GENERATED ALWAYS AS (IF(dx*dy>10.0, true, NULL)) NOT NULL
);
mysql-8.0.15> INSERT INTO squares_hack (dx,dy) VALUES (7,4);
Query OK, 1 row affected (0.02 sec)
mysql-8.0.15> INSERT INTO squares_hack (dx,dy) VALUES (2,4);
ERROR 1048 (23000): Column 'area_must_be_larger_than_10' cannot be null
mysql-8.0.15> SELECT dx, dy FROM squares_hack;
+------+------+
| dx | dy |
+------+------+
| 7 | 4 |
+------+------+
1 row in set (0.00 sec)
Check constraint since MySQL 8.0.16
mysql-8.0.16>
CREATE TABLE squares (
dx DOUBLE,
dy DOUBLE,
CONSTRAINT area_must_be_larger_than_10 CHECK ( dx * dy > 10.0 )
);
mysql-8.0.16> INSERT INTO squares (dx,dy) VALUES (7,4);
Query OK, 1 row affected (0.01 sec)
mysql-8.0.16> INSERT INTO squares (dx,dy) VALUES (2,4);
ERROR 3819 (HY000): Check constraint 'area_must_be_larger_than_10' is violated.
mysql-8.0.16> SELECT dx, dy FROM squares;
+------+------+
| dx | dy |
+------+------+
| 7 | 4 |
+------+------+
1 row in set (0.00 sec)
Still easy!
Example 3
You can also check text columns.
Check constraints hack
mysql-8.0.15>
CREATE TABLE animal_hack (
name varchar(30) NOT NULL,
class varchar(100) DEFAULT NULL,
class_allow_Mammal_Reptile_Amphibian BOOLEAN
GENERATED ALWAYS AS (IF(class IN ("Mammal", "Reptile", "Amphibian"), true, NULL)) NOT NULL
);
mysql-8.0.15> INSERT INTO animal_hack (name, class) VALUES ("Agalychnis callidryas",'Amphibian');
Query OK, 1 row affected (0.02 sec)
mysql-8.0.15> INSERT INTO animal_hack (name, class) VALUES ("Orycteropus afer", 'Mammal');
Query OK, 1 row affected (0.02 sec)
mysql-8.0.15> INSERT INTO animal_hack (name, class) VALUES ("Lacerta agilis", 'Reptile');
Query OK, 1 row affected (0.02 sec)
mysql-8.0.15> SELECT name, class FROM animal_hack;
+-----------------------+-----------+
| name | class |
+-----------------------+-----------+
| Agalychnis callidryas | Amphibian |
| Orycteropus afer | Mammal |
| Lacerta agilis | Reptile |
+-----------------------+-----------+
3 rows in set (0.00 sec)
mysql-8.0.15> INSERT INTO animal_hack (name, class) VALUES ("Palystes castaneus", 'Arachnid');
ERROR 1048 (23000): Column 'class_allow_Mammal_Reptile_Amphibian' cannot be null
mysql-8.0.15> SELECT name, class FROM animal_hack;
+-----------------------+-----------+
| name | class |
+-----------------------+-----------+
| Agalychnis callidryas | Amphibian |
| Orycteropus afer | Mammal |
| Lacerta agilis | Reptile |
+-----------------------+-----------+
3 rows in set (0.00 sec)
Check constraint since MySQL 8.0.16
mysql-8.0.16>
CREATE TABLE animal (
name varchar(30) NOT NULL,
class varchar(100) DEFAULT NULL,
CONSTRAINT CHECK (class IN ("Mammal", "Reptile", "Amphibian"))
);
mysql-8.0.16> INSERT INTO animal (name, class) VALUES ("Agalychnis callidryas",'Amphibian');
Query OK, 1 row affected (0.04 sec)
mysql-8.0.16> INSERT INTO animal (name, class) VALUES ("Orycteropus afer", 'Mammal');
Query OK, 1 row affected (0.04 sec)
mysql-8.0.16> INSERT INTO animal (name, class) VALUES ("Lacerta agilis", 'Reptile');
Query OK, 1 row affected (0.04 sec)
mysql-8.0.16> SELECT name, class FROM animal_hack;
+-----------------------+-----------+
| name | class |
+-----------------------+-----------+
| Agalychnis callidryas | Amphibian |
| Orycteropus afer | Mammal |
| Lacerta agilis | Reptile |
+-----------------------+-----------+
3 rows in set (0.00 sec)
mysql-8.0.16> INSERT INTO animal (name, class) VALUES ("Palystes castaneus", 'Arachnid');
ERROR 3819 (HY000): Check constraint 'animal_chk_1' is violated.
mysql-8.0.16> SELECT name, class FROM animal_hack;
+-----------------------+-----------+
| name | class |
+-----------------------+-----------+
| Agalychnis callidryas | Amphibian |
| Orycteropus afer | Mammal |
| Lacerta agilis | Reptile |
+-----------------------+-----------+
3 rows in set (0.00 sec)
Frankly easy!
I did not mention that the hack works as well in 8.0.16, though not needed anymore.
CHECK constraint is another useful feature implemented in MySQL (and not the last one, stay tuned!).
There are some other interesting things to know about this feature but also about the others available in MySQL 8.0.16.
Please have a look on the references below.
References
- MySQL Documentation: CHECK Constraints
- WL#929: CHECK constraints
- MySQL 8.0.16 Introducing CHECK constraint
- (Dave Stokes) – MySQL 8.0.16 Check Constraints
- (Lefred) – MySQL 8.0.16: how to validate JSON values in NoSQL with check constraint
- (Mablomy) – CHECK constraint for MySQL – NOT NULL on generated columns
- An idea for using MySQL 5.7’s generated column like CHECK constraint
- The MySQL 8.0.16 Maintenance Release is Generally Available
Thanks for using MySQL!
Watch my videos on my YouTube channel and subscribe.
Thanks for using HeatWave & MySQL!
Cloud Solutions Architect at Oracle
MySQL Geek, author, blogger and speaker
I’m an insatiable hunger of learning.
—–
Blog: www.dasini.net/blog/en/
Twitter: https://twitter.com/freshdaz
SlideShare: www.slideshare.net/freshdaz
Youtube: https://www.youtube.com/channel/UC12TulyJsJZHoCmby3Nm3WQ
—–