+ 立即免费创建此表 返回数据库大全

MySQL数据库表结构设计

第 1-7 条, 共 7 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
userIdint(11)无索引
questionIdint(11)无索引
contenttext无索引
addTimeint(11)0无索引0
weightint(11)0无索引0
yesapi_eduwind_ew_question_response_statusint(11)0无索引0
scoredecimal(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在线教育-题目答题';

复制后,到数据库执行,即可创建此数据库表。


猜你喜欢

MySQL数据库设计 课程预约

MySQL数据库设计 学英语社区-文章

MySQL数据库设计 学英语社区-文章内容

MySQL数据库设计 学英语社区-英文等级

MySQL数据库设计 学英语社区-等级搭述

MySQL数据库设计 学英语社区-英文短句

MySQL数据库设计 EW在线教育-权限分配

MySQL数据库设计 EW在线教育-权限

MySQL数据库设计 EW在线教育-子权限

MySQL数据库设计 EW在线教育-权限

MySQL数据库设计 EW在线教育-会话

MySQL数据库设计 EW在线教育-公告

MySQL数据库设计 EW在线教育-答案

MySQL数据库设计 EW在线教育-地区

MySQL数据库设计 EW在线教育-文章

MySQL数据库设计 EW在线教育-静态页面

MySQL数据库设计 EW在线教育-首页轮播图片

MySQL数据库设计 EW在线教育-分类

MySQL数据库设计 EW在线教育-章节

MySQL数据库设计 EW在线教育-城市



回到顶部 ↑