id 文章id title 文章标题 content 文章内容 category_id 文章分类id hits 点击量
1 回答
慕容3067478
TA贡献1773条经验 获得超3个赞
CREATE TABLE 'message'(
'id' int(10) NOT NULL auto_increment,
'title' varchar(200) default NULL,
'content' text,
'category_id' int(10) NOT NULL,
'hits' int(20),
PRIMARY KEY('id');
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
- 1 回答
- 0 关注
- 696 浏览
添加回答
举报
0/150
提交
取消