首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

筑库建表语句

2012-08-22 
建库建表语句--建立数据库create Database newssystem--建立类别表create table category( id int identit

建库建表语句

--建立数据库create Database newssystem--建立类别表create table category( id int identity(1,1) primary key, [name] varchar(100) not null)--建立新闻表create table news( id int identity(1,1) primary key, title varchar(100) not null, [content] text not null, createTime datetime not null, caId int)--建立评论表create table comment( id int identity (1,1) primary key, [content] text not null, createTime datetime not null, userIp varchar(15) not null, newsid int)
?

?

热点排行