MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
qid | int(10) | 0 | 否 | 无索引 | 0 | |
yesapi_whatsns_question_tag_name | varchar(20) | 否 | 无索引 | |||
yesapi_whatsns_question_tag_time | int(10) | 0 | 否 | 普通索引 | 0 | |
pinyin | varchar(200) | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:问答社区-问题标志:https://open.yesapi.cn/tablelist/yesapi_whatsns_question_tag.html
-- 数据库大全:问答社区-问题标志
-- 来源:YesApi.cn
CREATE TABLE `yesapi_whatsns_question_tag` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`qid` int(10) NULL DEFAULT '0' COMMENT '',
`yesapi_whatsns_question_tag_name` varchar(20) NULL COMMENT '',
`yesapi_whatsns_question_tag_time` int(10) NULL DEFAULT '0' COMMENT '',
`pinyin` varchar(200) NULL COMMENT '',
KEY `yesapi_whatsns_question_tag_time` (`yesapi_whatsns_question_tag_time`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '问答社区-问题标志';
复制后,到数据库执行,即可创建此数据库表。