MySQL数据库表结构设计
第 1-3 条, 共 3 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
yesapi_eduwind_ew_system_setting_name | char(64) | 否 | 名称 | 无索引 | ||
yesapi_eduwind_ew_system_setting_value | text | 否 | 值 | 无索引 | ||
description | text | 是 | 描述 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:EW在线教育-系统设置值表:https://open.yesapi.cn/tablelist/yesapi_eduwind_ew_system_setting.html
-- 数据库大全:EW在线教育-系统设置值表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_eduwind_ew_system_setting` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`yesapi_eduwind_ew_system_setting_name` char(64) NULL COMMENT '名称',
`yesapi_eduwind_ew_system_setting_value` text NULL COMMENT '值',
`description` text NULL COMMENT '描述',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-系统设置值表';
复制后,到数据库执行,即可创建此数据库表。