动态生成表的字段alter table dbo.test add kzzd2 int default 0
USE suntest 数据库名称
create table 表名称
(
仓库编号 int primary key , --主键的关键字primary key--
仓库号 varchar(50) unique, --唯一索引关键字unique--
城市 varchar(50) not null, --不能为空not null--
面积 int
)
动态生成表的字段alter table dbo.test add kzzd2 int default 0
USE suntest 数据库名称
create table 表名称
(
仓库编号 int primary key , --主键的关键字primary key--
仓库号 varchar(50) unique, --唯一索引关键字unique--
城市 varchar(50) not null, --不能为空not null--
面积 int
)