2010-03-01 60 views

回答

3

不,你需要做的是分批

create table test(id int) 
go 

alter table Test add id2 int 
go 
alter table Test ALTER COLUMN id DECIMAL (5, 2) 

但是,您可以在同一时间

alter table Test add id3 int, id4 int 
go 
+0

由于增加超过1列。这在我的搜索中找到了。 – 2010-03-01 19:12:40