MySQL数据库表结构设计
第 1-5 条, 共 5 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
submit_id | bigint(20) | 否 | 提交id | 无索引 | ||
account_id | bigint(20) | 否 | 账户id | 无索引 | ||
yesapi_exam_submit_applaud_update | bigint(20) | 否 | 更新时间戳 | 无索引 | ||
applaud | tinyint(4) | 否 | 赞同 | 无索引 | ||
created | timestamp | CURRENT_TIMESTAMP | 否 | 创建时间 | 无索引 | CURRENT_TIMESTAMP |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:考试-提交纪录:https://open.yesapi.cn/tablelist/yesapi_exam_submit_applaud.html
-- 数据库大全:考试-提交纪录
-- 来源:YesApi.cn
CREATE TABLE `yesapi_exam_submit_applaud` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`submit_id` bigint(20) NOT NULL COMMENT '提交id',
`account_id` bigint(20) NOT NULL COMMENT '账户id',
`yesapi_exam_submit_applaud_update` bigint(20) NOT NULL COMMENT '更新时间戳',
`applaud` tinyint(4) NOT NULL COMMENT '赞同',
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '考试-提交纪录';
复制后,到数据库执行,即可创建此数据库表。