MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
flash_promotion_id | bigint(20) | 是 | 无索引 | |||
flash_promotion_session_id | bigint(20) | 是 | 编号 | 无索引 | ||
product_id | bigint(20) | 是 | 无索引 | |||
flash_promotion_price | decimal(10,2) | 是 | 限时购价格 | 无索引 | ||
flash_promotion_count | int(11) | 是 | 限时购数量 | 无索引 | ||
flash_promotion_limit | int(11) | 是 | 每人限购数量 | 无索引 | ||
sort | int(11) | 是 | 排序 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:电商-商品限时购与商品关系表:https://open.yesapi.cn/tablelist/yesapi_mall_sms_flash_promotion_product_relation.html
-- 数据库大全:电商-商品限时购与商品关系表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_mall_sms_flash_promotion_product_relation` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`flash_promotion_id` bigint(20) NULL COMMENT '',
`flash_promotion_session_id` bigint(20) NULL COMMENT '编号',
`product_id` bigint(20) NULL COMMENT '',
`flash_promotion_price` decimal(10,2) NULL COMMENT '限时购价格',
`flash_promotion_count` int(11) NULL COMMENT '限时购数量',
`flash_promotion_limit` int(11) NULL COMMENT '每人限购数量',
`sort` int(11) NULL COMMENT '排序',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '电商-商品限时购与商品关系表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航