赞
踩
– 非空约束,指字段的值不能为空,如果设置了非空字段,用户在添加的时候没有赋值,那么会报错
语法:
方式1:<字段名><数据类型> not null;
方式2:alter table 表名 modify 字段 类型 not null;
实现:
添加非空约束——方式1(创建表时指定)
create table t_user6(
id int ,
name varchar(20) not null,
address varchar(20) not null
);
insert into t_user6(id) values(10001); --------不可以
insert into t_user6(id,name,address) values(10001,NULL,NULL); ---- 不可以
insert into t_user6(id,name,address) values(10001,‘NULL’,‘NULL’); —可以
insert into t_user6(id,name,address) values(10001,‘’,‘’); ----可以(空串)
添加非空约束——方式2(创建表后指定)
create table t_user7(
id int ,
name varchar(20),
address varchar(20)
);
alter table t_user7 modify name varchar(20) not null;
alter table t_user7 modify address varchar(20) not null;
– 删除非空约束
alter table 表名 modify 字段 类型;
alter table t_user7 modify name varchar(20);
alter table t_user7 modify address varchar(20);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。