MySQL数据库表结构设计
第 1-9 条, 共 9 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
topic_title | varchar(64) | 是 | 话题标题 | 无索引 | ||
discuss_count | int(11) | 0 | 是 | 讨论计数 | 无索引 | 0 |
topic_description | text | 是 | 话题描述 | 无索引 | ||
topic_pic | varchar(255) | 是 | 话题图片 | 无索引 | ||
topic_lock | tinyint(2) | 0 | 否 | 话题是否锁定 1 锁定 0 未锁定 | 无索引 | 0 |
focus_count | int(11) | 0 | 是 | 关注计数 | 无索引 | 0 |
seo_title | varchar(255) | 是 | 无索引 | |||
parent_id | int(10) | 0 | 是 | 无索引 | 0 | |
is_parent | tinyint(1) | 0 | 是 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:话题:https://open.yesapi.cn/tablelist/yesapi_topic.html
-- 数据库大全:话题
-- 来源:YesApi.cn
CREATE TABLE `yesapi_topic` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`topic_title` varchar(64) NULL COMMENT '话题标题',
`discuss_count` int(11) NULL DEFAULT '0' COMMENT '讨论计数',
`topic_description` text NULL COMMENT '话题描述',
`topic_pic` varchar(255) NULL COMMENT '话题图片',
`topic_lock` tinyint(2) NULL DEFAULT '0' COMMENT '话题是否锁定 1 锁定 0 未锁定',
`focus_count` int(11) NULL DEFAULT '0' COMMENT '关注计数',
`seo_title` varchar(255) NULL COMMENT '',
`parent_id` int(10) NULL DEFAULT '0' COMMENT '',
`is_parent` tinyint(1) NULL DEFAULT '0' COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '话题';
复制后,到数据库执行,即可创建此数据库表。