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