添加字段注释:
添加字段的时候,mysql中
alter table cc add name varchar(30) not null ;
- 默认加入的是空字符串
alter table cc add sex char(30) not null ;
- 默认加入的是空字符串
alter table cc add col1 int not null ;
- 默认加入的是0
alter table cc add col2 TINYINT not null ;
- 默认加入的是0
alter table cc add col3 BIGINT not null ;
- 默认加入的是0
alter table cc add col2 decimal not null ;
- 默认加入的是0
alter table cc add dttime timestamp not null;
- 默认加入的当前时间
转到其他数据库的时候,会将默认值设置为DEFAULT VALUE。
文档更新时间: 2021-01-25 14:53 作者:阿力