MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
userId | int(11) | 否 | 无索引 | |||
questionId | int(11) | 否 | 无索引 | |||
content | text | 是 | 无索引 | |||
addTime | int(11) | 0 | 否 | 无索引 | 0 | |
weight | int(11) | 0 | 否 | 无索引 | 0 | |
yesapi_eduwind_ew_question_response_status | int(11) | 0 | 否 | 无索引 | 0 | |
score | decimal(7,2) | 0.00 | 否 | 得分 | 无索引 | 0.00 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:EW在线教育-题目答题:https://open.yesapi.cn/tablelist/yesapi_eduwind_ew_question_response.html
-- 数据库大全:EW在线教育-题目答题
-- 来源:YesApi.cn
CREATE TABLE `yesapi_eduwind_ew_question_response` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`userId` int(11) NOT NULL COMMENT '',
`questionId` int(11) NOT NULL COMMENT '',
`content` text NOT NULL COMMENT '',
`addTime` int(11) NOT NULL DEFAULT '0' COMMENT '',
`weight` int(11) NOT NULL DEFAULT '0' COMMENT '',
`yesapi_eduwind_ew_question_response_status` int(11) NOT NULL DEFAULT '0' COMMENT '',
`score` decimal(7,2) NOT NULL DEFAULT '0.00' COMMENT '得分',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-题目答题';
复制后,到数据库执行,即可创建此数据库表。