SQL语法:
ALTER TABLE 表名
ADD 字段 类型 not null default(默认值)
例如:在A表中增加字段Prcie(价格) 类型为money 不能为空 默认值为0.0
SQL如下: ALTER TABLE A ADD Price money not null default(0.0)
时间: 2024-10-28 11:05:05
SQL语法:
ALTER TABLE 表名
ADD 字段 类型 not null default(默认值)
例如:在A表中增加字段Prcie(价格) 类型为money 不能为空 默认值为0.0
SQL如下: ALTER TABLE A ADD Price money not null default(0.0)