mysql数据库 check约束无效
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql数据库 check约束无效相关的知识,希望对你有一定的参考价值。
语句如下:
created table test (id int ,no int null check (no in(0,1) ) );
insert into test alues (5,5);
select * from test ;
仍然显示5,5.这是为什么呢?
CHECK子句会被分析,但是会被忽略。请参见13.1.5节,“CREATE TABLE语法”。接受这些子句但又忽略子句的原因是为了提高兼容性,以便更容易地从其它SQL服务器中导入代码,并运行应用程序,创建带参考数据的表。请参见1.8.5节,“mysql与标准SQL的差别”。
你可以变通实现啊 用enum字段类型
mysql> create table test(id int ,no enum('0','1'));
insert into test alues (5,5);
select * from test ;
ERROR 1265 (01000): Data truncated for column 'no' at row 1 参考技术A
现在要说的是在列这一层次过滤的基于表定义之前就规范好的 CHECK 约束。(MySQL 版本 >= 8.0.16)
mysql> create table f1 (r1 int constraint tb_f1_r1_chk1 check (mod(r1,3)=0));
Query OK, 0 rows affected (0.03 sec)
mysql> create table f2 (r1 int constraint tb_f2_r1_chk1 check (mod(r1,3)=0) not enforced);
Query OK, 0 rows affected (0.02 sec)
这里 CHECK 约束的相关限制如下:
1. constraint 名字在每个数据库中唯一。
也就是说单个数据库里不存在相同的两个 constraint,如果不定义,系统自动生成一个唯一的约束名字。
2. check 约束针对语句 insert/update/replace/load data/load xml 生效;针对对应的 ignore 语句失效。
3. 并非每个函数都可以使用,比如函数结果不确定的:NOW(),CONNECTION_ID(),CURRENT_USER()。
4. 不适用于存储过程和存储函数。
5. 系统变量不适用。
6. 子查询不适用。
7. 外键动作(比如 ON UPDATE, ON DELETE) 不适用。
8. enforced 默认启用,如果单独加上 not enforced ,check 约束失效。
MySQL关于check约束无效的解决办法
首先看下面这段MySQL的操作,我新建了一个含有a和b的表,其中a用check约束必须大于0,然而我插入了一条(-2,1,1)的数据,其中a=-2,也是成功插入的。
所以MySQL只是check,但是不强制check。
1 mysql> create table checkDemoTable(a int,b int,id int,primary key(id)); 2 Query OK, 0 rows affected 3 4 mysql> alter table checkDemoTable add constraint checkDemoConstraint check(age>0); 5 Query OK, 0 rows affected 6 Records: 0 Duplicates: 0 Warnings: 0 7 8 mysql> insert into checkDemoTable values(-2,1,1); 9 Query OK, 1 row affected 10 11 mysql> select * from checkDemoTable; 12 +----+---+----+ 13 | a | b | id | 14 +----+---+----+ 15 | -2 | 1 | 1 | 16 +----+---+----+ 17 1 row in set
解决这个问题有两种办法:
1. 如果需要设置CHECK约束的字段范围小,并且比较容易列举全部的值,就可以考虑将该字段的类型设置为枚举类型 enum()或集合类型set()。比如性别字段可以这样设置,插入枚举值以外值的操作将不被允许。
1 mysql> create table checkDemoTable(a enum(‘男‘,‘女‘),b int,id int,primary key(id)); 2 Query OK, 0 rows affected 3 4 mysql> insert into checkDemoTable values(‘男‘,1,1); 5 Query OK, 1 row affected 6 7 mysql> select * from checkDemoTable; 8 +----+---+----+ 9 | a | b | id | 10 +----+---+----+ 11 | 男 | 1 | 1 | 12 +----+---+----+ 13 1 row in set
2. 如果需要设置CHECK约束的字段范围大,且列举全部值比较困难,比如:>0的值,那就只能使用触发器来代替约束实现数据的有效性了。如下代码,可以保证a>0。
1 mysql> create table checkDemoTable(a int,b int,id int,primary key(id)); 2 Query OK, 0 rows affected 3 4 mysql> delimiter || 5 drop trigger if exists checkTrigger|| 6 create trigger checkTrigger before insert on checkDemoTable for each row 7 begin 8 if new.a<=0 then set new.a=1; end if; 9 end|| 10 delimiter; 11 12 Query OK, 0 rows affected 13 Query OK, 0 rows affected 14 15 mysql> insert into checkDemoTable values(-1,1,1); 16 Query OK, 1 row affected 17 18 mysql> select * from checkDemoTable; 19 +---+---+----+ 20 | a | b | id | 21 +---+---+----+ 22 | 1 | 1 | 1 | 23 +---+---+----+ 24 1 row in set
以上是关于mysql数据库 check约束无效的主要内容,如果未能解决你的问题,请参考以下文章