4
检查约束不起作用?
我有下表。 create table test ( id smallint unsigned AUTO_INCREMENT, age tinyint not null, primary key(id), check (age<20) ); 问题在于该CHECK约束不适用于“年龄”列。例如,当我为年龄字段插入222时,MySQL接受它。
23
mysql
constraint