列属性
Table of Contents
- auto_increment
- default
- comment
auto_increment
auto_increment 必须用在 primary_key 上
create table xxx ( id int(10) unsigned primary key auto_increment, ) auto_increment=1; # 表示从 1 开始计算
default
default 就是插入的时候不指定值的时候自动赋予的值
create table time1 ( tm timestamp unique default now(), username varchar(30)not null ); drop table time1;
comment
create table time1 ( tm timestamp unique default now() comment ‘this is time‘, );
时间: 2024-11-18 18:44:15