默认约束 default
Posted mariobear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了默认约束 default相关的知识,希望对你有一定的参考价值。
default :初始值设置,插入记录时,如果没有明确为字段赋值,则自动赋予默认值。
例子:
create table tb6(
id int primary key auto_increment,
name varchar(20) not null,
age int not null default 18
);
#删除default
mysql> alter table tb6
-> modify age int;
mysql> alter table tb6
-> modify age int default 20;
以上是关于默认约束 default的主要内容,如果未能解决你的问题,请参考以下文章