非空约束特点
- 非空约束名为 NOT NULL
- 一个表可以有很多的非空约束
- 非空约束只能针对某一个字段来说
create table 【数据库名.】表名称(
字段名1数据类型 primary key,
字段名2数据类型 【unique key】 not null,
字段名3数据类型 not null,
。。。。
);
- 建表后指定非空约束
alter table 【数据库名.】表名称 modify 字段名 数据类型 not null;
删除非空约束
- 使用modify的方式删除非空约束
alter table 【数据库名.】表名称 modify 字段名 数据类型;