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