MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
yesapi_eduwind_ew_category_name | char(64) | 否 | 类型 | 无索引 | ||
parentId | int(11) | 0 | 否 | 父级分类 | 无索引 | 0 |
yesapi_eduwind_ew_category_type | char(64) | 否 | 类型,book,course等 | 无索引 | ||
weight | int(11) | 0 | 否 | 排序 | 无索引 | 0 |
userId | int(11) | 0 | 否 | 创建者 | 无索引 | 0 |
description | text | 是 | 无索引 | |||
addTime | varchar(45) | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:EW在线教育-分类:https://open.yesapi.cn/tablelist/yesapi_eduwind_ew_category.html
-- 数据库大全:EW在线教育-分类
-- 来源:YesApi.cn
CREATE TABLE `yesapi_eduwind_ew_category` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`yesapi_eduwind_ew_category_name` char(64) NULL COMMENT '类型',
`parentId` int(11) NULL DEFAULT '0' COMMENT '父级分类',
`yesapi_eduwind_ew_category_type` char(64) NULL COMMENT '类型,book,course等',
`weight` int(11) NULL DEFAULT '0' COMMENT '排序',
`userId` int(11) NULL DEFAULT '0' COMMENT '创建者',
`description` text NULL COMMENT '',
`addTime` varchar(45) NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-分类';
复制后,到数据库执行,即可创建此数据库表。