当前位置:   article > 正文

mysql中的非空约束_mysql非空约束

mysql非空约束

– 非空约束,指字段的值不能为空,如果设置了非空字段,用户在添加的时候没有赋值,那么会报错

语法:
方式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

	);
  • 1

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)

	);
  • 1

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);

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/574900
推荐阅读
相关标签
  

闽ICP备14008679号