
CREATE TABLE articles (
ArticleID bigint NOT NULL identity primary key ,
Title varchar(100) default NULL,
Content text,
UserID bigint default '0',
CreateTime datetime default (getdate()) ,
BoardID bigint default '0',
FatherID bigint default '0',
ReadCount int default '0',
ReCount int default '0',
PicUrl varchar(30) default '0',
PicName varchar(100) default NULL
)
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)