1.为数据表添加一个新字段
Alter TABLE [dbo].[CustomerBackupConfig] Add [Stamp] [timestamp] NULL
GO
2.为数据表添加两个新字段
Alter Table tblStates Add [TaxRate] money not null default 0,
[Transit] int not null default 0
GO
3.为数据表删除一个字段
Alter Table [dbo].[tblOrder] Drop Column [CookieID]
GO
4.修