MySQL数据库表结构设计
第 1-6 条, 共 6 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
uid | bigint(20) | 否 | 用户ID | 普通索引 | ||
product_id | bigint(20) | 否 | 商品ID | 无索引 | ||
yesapi_yshopmall_yx_store_product_relation_type | varchar(32) | 是 | 类型(收藏(collect)、点赞(like)) | 普通索引 | ||
category | varchar(32) | 是 | 某种类型的商品(普通商品、秒杀商品) | 普通索引 | ||
create_time | datetime | 否 | 添加时间 | 无索引 | ||
is_del | tinyint(1) | 0 | 是 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:商城系统-商品点赞和收藏表:https://open.yesapi.cn/tablelist/yesapi_yshopmall_yx_store_product_relation.html
-- 数据库大全:商城系统-商品点赞和收藏表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_yshopmall_yx_store_product_relation` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`uid` bigint(20) NULL COMMENT '用户ID',
`product_id` bigint(20) NULL COMMENT '商品ID',
`yesapi_yshopmall_yx_store_product_relation_type` varchar(32) NULL COMMENT '类型(收藏(collect)、点赞(like))',
`category` varchar(32) NULL COMMENT '某种类型的商品(普通商品、秒杀商品)',
`create_time` datetime NULL COMMENT '添加时间',
`is_del` tinyint(1) NULL DEFAULT '0' COMMENT '',
KEY `uid` (`uid`),
KEY `yesapi_yshopmall_yx_store_product_relation_type` (`yesapi_yshopmall_yx_store_product_relation_type`),
KEY `category` (`category`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '商城系统-商品点赞和收藏表';
复制后,到数据库执行,即可创建此数据库表。