MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
information_category_id | int(11) | 否 | 无索引 | |||
sort_order | int(3) | 否 | 无索引 | |||
parent_id | int(11) | 否 | 无索引 | |||
yesapi_openant_information_category_status | tinyint(1) | 否 | 无索引 | |||
position | varchar(32) | 否 | 无索引 | |||
store_id | int(11) | 否 | 无索引 | |||
yesapi_openant_information_category_column | int(11) | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:openant电商-信息分类:https://open.yesapi.cn/tablelist/yesapi_openant_information_category.html
-- 数据库大全:openant电商-信息分类
-- 来源:YesApi.cn
CREATE TABLE `yesapi_openant_information_category` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`information_category_id` int(11) NOT NULL COMMENT '',
`sort_order` int(3) NOT NULL COMMENT '',
`parent_id` int(11) NOT NULL COMMENT '',
`yesapi_openant_information_category_status` tinyint(1) NOT NULL COMMENT '',
`position` varchar(32) NOT NULL COMMENT '',
`store_id` int(11) NOT NULL COMMENT '',
`yesapi_openant_information_category_column` int(11) NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-信息分类';
复制后,到数据库执行,即可创建此数据库表。