非空约束特点

  1. 非空约束名为 NOT NULL
  1. 一个表可以有很多的非空约束
  1. 非空约束只能针对某一个字段来说
  1. 非空约束意味着,该字段不能存入null值

    创建非空约束

  2. 在建表的时候创建非空约束

create table 【数据库名.】表名称(
字段名1数据类型 primary key,
字段名2数据类型 【unique key】 not null,
字段名3数据类型 not null,
。。。。
);

  1. 建表后指定非空约束

alter table 【数据库名.】表名称 modify 字段名 数据类型 not null;

删除非空约束

  1. 使用modify的方式删除非空约束

alter table 【数据库名.】表名称 modify 字段名 数据类型;