not null 非空约束
Posted mariobear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了not null 非空约束相关的知识,希望对你有一定的参考价值。
例子:
create table tb1(
id int,
name varchar(20) not null
);
注意 空字符不等于null
#手动,添加非空约束
(必须这个字段,没有NULL值)
mysql> alter table tb1
-> modify id int not null;
# 取消非空约束
mysql> alter table tb1
-> modify id int ;
以上是关于not null 非空约束的主要内容,如果未能解决你的问题,请参考以下文章