yfProgramer
学习不是应付生活,应付答案。是一种追求,一个理想。
create table header
(
  parent int not null,
  poster char(20) not null,
  title char(20) not null,
  children int default 0 not null,
  area int default 0 not null,
  posted datetime not null,
  postid int unsigned not null auto_increment primary key
)engine=innodb default charset=utf8 auto_increment=1
create table body
(
  postid int unsigned not null primary key,
  message text
)

posted on 2011-04-22 12:57  yfProgramer  阅读(330)  评论(0编辑  收藏  举报