直接在SQL Server企业管理器中添加字段或者使用SQL 语句如:create table #t(a int,b int,c int)
goselect * from #t--添加列d
alter table #t add d int
goselect * from #tdrop table #t
go