MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
product_discount_id | int(11) | 否 | 无索引 | |||
product_id | int(11) | 否 | 无索引 | |||
user_class_id | int(11) | 否 | 无索引 | |||
quantity | int(4) | 0 | 否 | 无索引 | 0 | |
yesapi_openant_product_discount_value | decimal(15,4) | 0.0000 | 否 | 无索引 | 0.0000 | |
date_start | datetime | 否 | 无索引 | |||
date_end | datetime | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:openant电商-商品折扣:https://open.yesapi.cn/tablelist/yesapi_openant_product_discount.html
-- 数据库大全:openant电商-商品折扣
-- 来源:YesApi.cn
CREATE TABLE `yesapi_openant_product_discount` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`product_discount_id` int(11) NOT NULL COMMENT '',
`product_id` int(11) NOT NULL COMMENT '',
`user_class_id` int(11) NOT NULL COMMENT '',
`quantity` int(4) NOT NULL DEFAULT '0' COMMENT '',
`yesapi_openant_product_discount_value` decimal(15,4) NOT NULL DEFAULT '0.0000' COMMENT '',
`date_start` datetime NOT NULL COMMENT '',
`date_end` datetime NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-商品折扣';
复制后,到数据库执行,即可创建此数据库表。