首页 相关文章 bbs的数据结构和存储过程(一)

bbs的数据结构和存储过程(一)

/*数据结构*/

/*bbs用户表*/
if exists(select * from sysobjects where id = object_id('BBSUser'))
drop table BBSUser
go

create table BBSUser
(
id int identity primary key ,
UserName varchar(20) default '' not null ,
Password varchar(10) default '' not null ,
Email varchar(100) default '' not null ,
Homepage varchar(150) default '' not null ,
Signature varchar(255) default '' not null ,
SignDate datetime default getdate() not null ,
Point int default 0 not null
)

go

create index ix_bbs...[ 查看全文 ]

2016-01-29 标签:

bbs的数据结构和存储过程(一)的相关文章

手机页面
收藏网站 回到头部