MySQL数据库表结构设计
第 1-3 条, 共 3 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
cart_id | bigint(20) | 是 | 普通索引 | |||
product_id | bigint(20) | 是 | 普通索引 | |||
config | text | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:主机销售-购物车商品:https://open.yesapi.cn/tablelist/yesapi_box_cart_product.html
-- 数据库大全:主机销售-购物车商品
-- 来源:YesApi.cn
CREATE TABLE `yesapi_box_cart_product` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`cart_id` bigint(20) NULL COMMENT '',
`product_id` bigint(20) NULL COMMENT '',
`config` text NULL COMMENT '',
KEY `cart_id` (`cart_id`),
KEY `product_id` (`product_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '主机销售-购物车商品';
复制后,到数据库执行,即可创建此数据库表。