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

MySQL建表SQL语句

数据库结构:EW在线教育-讨论区帖子:https://open.yesapi.cn/tablelist/yesapi_eduwind_ew_course_post.html


-- 数据库大全:EW在线教育-讨论区帖子
-- 来源:YesApi.cn
CREATE TABLE `yesapi_eduwind_ew_course_post` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `courseId` int(11) NOT NULL COMMENT '',
    `lessonId` int(11) NOT NULL DEFAULT '0' COMMENT '',
    `title` varchar(128) NOT NULL COMMENT '帖子标题',
    `content` text NOT NULL COMMENT '帖子内容',
    `upTime` int(11) NOT NULL COMMENT '更新时间',
    `addTime` int(11) NOT NULL COMMENT '添加时间',
    `userId` int(11) NOT NULL COMMENT '发表者id',
    `commentNum` int(11) NOT NULL DEFAULT '0' COMMENT '回帖总数',
    `viewNum` int(11) NOT NULL DEFAULT '0' COMMENT '浏览总数',
    `voteNum` int(11) NOT NULL DEFAULT '0' COMMENT '投票总数',
    `isTop` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否置顶',
    `isDigest` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否精华帖',
    `voteUpNum` int(11) NOT NULL DEFAULT '0' COMMENT '赞',
    `voteDownNum` int(11) NOT NULL DEFAULT '0' COMMENT '赞',
    `commentableEntityId` int(11) NOT NULL DEFAULT '0' COMMENT '评论对象id',
    `entityId` int(11) NOT NULL DEFAULT '0' COMMENT 'Entity对象Id',
    `deleted` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
    `deleteTime` int(11) NOT NULL DEFAULT '0' COMMENT '',
    KEY `userId` (`userId`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-讨论区帖子';

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


MySQL数据库表结构设计

第 1-18 条, 共 18 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
courseIdint(11)无索引
lessonIdint(11)0无索引0
titlevarchar(128)帖子标题无索引
contenttext帖子内容无索引
upTimeint(11)更新时间无索引
addTimeint(11)添加时间无索引
userIdint(11)发表者id普通索引
commentNumint(11)0回帖总数无索引0
viewNumint(11)0浏览总数无索引0
voteNumint(11)0投票总数无索引0
isToptinyint(1)0是否置顶无索引0
isDigesttinyint(1)0是否精华帖无索引0
voteUpNumint(11)0无索引0
voteDownNumint(11)0无索引0
commentableEntityIdint(11)0评论对象id无索引0
entityIdint(11)0Entity对象Id无索引0
deletedtinyint(1)0无索引0
deleteTimeint(11)0无索引0

猜你喜欢

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在线教育-城市



回到顶部 ↑