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