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