MySQL数据库表结构设计
第 1-13 条, 共 13 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
user_id | mediumint(8) | 0 | 否 | 会员Id | 无索引 | 0 |
session_id | char(32) | 否 | sessionId | 普通索引 | ||
goods_id | mediumint(8) | 0 | 否 | 商品Id | 无索引 | 0 |
goods_sn | varchar(60) | 否 | 商品序列号 | 无索引 | ||
product_id | mediumint(8) | 0 | 否 | 产品Id | 无索引 | 0 |
goods_name | varchar(120) | 否 | 产品名称 | 无索引 | ||
market_price | decimal(10,2) unsigned | 0.00 | 否 | 市场价 | 无索引 | 0.00 |
retail_price | decimal(10,2) | 0.00 | 否 | 零售价格 | 无索引 | 0.00 |
yesapi_nideshop_cart_number | smallint(5) | 0 | 否 | 数量 | 无索引 | 0 |
goods_specifition_name_value | text | 是 | 规格属性组成的字符串,用来显示用 | 无索引 | ||
goods_specifition_ids | varchar(60) | 是 | product表对应的goods_specifition_ids | 无索引 | ||
checked | tinyint(1) | 1 | 否 | 无索引 | 1 | |
list_pic_url | varchar(255) | 否 | 商品图片 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:微同商城-购物车:https://open.yesapi.cn/tablelist/yesapi_nideshop_cart.html
-- 数据库大全:微同商城-购物车
-- 来源:YesApi.cn
CREATE TABLE `yesapi_nideshop_cart` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` mediumint(8) NOT NULL DEFAULT '0' COMMENT '会员Id',
`session_id` char(32) NOT NULL COMMENT 'sessionId',
`goods_id` mediumint(8) NOT NULL DEFAULT '0' COMMENT '商品Id',
`goods_sn` varchar(60) NOT NULL COMMENT '商品序列号',
`product_id` mediumint(8) NOT NULL DEFAULT '0' COMMENT '产品Id',
`goods_name` varchar(120) NOT NULL COMMENT '产品名称',
`market_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '市场价',
`retail_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '零售价格',
`yesapi_nideshop_cart_number` smallint(5) NOT NULL DEFAULT '0' COMMENT '数量',
`goods_specifition_name_value` text NOT NULL COMMENT '规格属性组成的字符串,用来显示用',
`goods_specifition_ids` varchar(60) NOT NULL COMMENT 'product表对应的goods_specifition_ids',
`checked` tinyint(1) NOT NULL DEFAULT '1' COMMENT '',
`list_pic_url` varchar(255) NOT NULL COMMENT '商品图片',
KEY `session_id` (`session_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '微同商城-购物车';
复制后,到数据库执行,即可创建此数据库表。