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

MySQL建表SQL语句

数据库结构:考试-提交纪录: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 '考试-提交纪录';

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


MySQL数据库表结构设计

第 1-5 条, 共 5 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
submit_idbigint(20)提交id无索引
account_idbigint(20)账户id无索引
yesapi_exam_submit_applaud_updatebigint(20)更新时间戳无索引
applaudtinyint(4)赞同无索引
createdtimestampCURRENT_TIMESTAMP创建时间无索引CURRENT_TIMESTAMP

猜你喜欢

MySQL数据库设计 考试-账号

MySQL数据库设计 考试-凭证

MySQL数据库设计 考试-代码

MySQL数据库设计 考试-学生

MySQL数据库设计 考试-考试

MySQL数据库设计 考试-提交

MySQL数据库设计 考试-题目

MySQL数据库设计 考试-考试题目

MySQL数据库设计 考试-考试说明

MySQL数据库设计 考试-班级

MySQL数据库设计 考试-班级管理员

MySQL数据库设计 考试-班级学生



回到顶部 ↑