MySQL数据库表结构设计
第 1-5 条, 共 5 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
appname | varchar(20) | 否 | 应用名 | 无索引 | ||
yesapi_zhiguo_ocenter_support_row | int(11) | 否 | 应用标识 | 无索引 | ||
uid | int(11) | 否 | 用户 | 无索引 | ||
create_time | int(11) | 否 | 发布时间 | 无索引 | ||
yesapi_zhiguo_ocenter_support_table | varchar(20) | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:智果内容付费-支持的表:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_support.html
-- 数据库大全:智果内容付费-支持的表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_support` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`appname` varchar(20) NOT NULL COMMENT '应用名',
`yesapi_zhiguo_ocenter_support_row` int(11) NOT NULL COMMENT '应用标识',
`uid` int(11) NOT NULL COMMENT '用户',
`create_time` int(11) NOT NULL COMMENT '发布时间',
`yesapi_zhiguo_ocenter_support_table` varchar(20) NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-支持的表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 智果内容付费-权限组与分类的对应关系表