时间:2021-07-01 10:21:17 帮助过:18人阅读
alter table 表名 add constraint 约束名字 DEFAULT 默认值 for 字段名称 -------说明:添加一个表的字段的约束并指定默认值
二、修改字段名:
alter table 表名 rename column A to B
三、修改字段类型:
alter table 表名 alter column UnitPrice decimal(18, 4) not null
alter table 表名 modify 字段名 char(32) 约束 COMMENT 备注
alter table remit_domestic_sub_record modify account_no char(32) null default null COMMENT ‘账户编号‘
三、修改增加字段:
alter table 表名 ADD 字段 类型 NOT NULL Default 0
【数据库】修改表结构
标签:添加 default nbsp count 数据库 price color account --