等效于删除 下面Test表的ID列的标识增长
CREATE TABLE [dbo].[Test](
[ID] [bigint] IDENTITY(1,1) NOT NULL,
[Name] [nvarchar](200) NULL
) ON [PRIMARY]