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