ZL_C_soft
GO
CREATE TABLE [dbo].[ZL_C_soft] (
[ID] [int] IDENTITY (1, 1) NOT NULL,
[source] [nvarchar] (255) NULL DEFAULT (''),
[explain] [ntext] NULL DEFAULT (''),
[content] [ntext] NULL DEFAULT (''),
[Edit] [nvarchar] (255) NULL DEFAULT (''),
[Soft_pic] [nvarchar] (255) NULL DEFAULT (''),
[DownUrlthum] [nvarchar] (255) NULL DEFAULT (''),
[DownUrl] [ntext] NULL DEFAULT ('')
)
ALTER TABLE [ZL_C_soft] WITH NOCHECK ADD CONSTRAINT [PK_ZL_C_soft] PRIMARY KEY NONCLUSTERED ( [ID] )
SET IDENTITY_INSERT [ZL_C_soft]
detele from ZL_C_soft
drop table ZL_C_soft
TRUNCATE table ZL_C_soft