/*==============================================================*/
/* 在表sysobjects中查找有没有“newsContent”的记录,有就将数据库中的表删除
/*==============================================================*/
if exists (select 1
from sysobjects
where id = object_id('newsContent')
and type = 'U')
drop table newsContent
go
/*==============================================================*/
/* Table: newsContent */
/*==============================================================*/
create table newsContent (
ID int identity(1,1) primary key,
Title nvarchar(50) not null,
Content ntext not null,
AddDate datetime not null,
CategoryID int not null
)
go