1

我有一个关于我的数据库设计及其实现的问题,我希望有人能帮助我吗?

我有一个产品 -> 零售商场景,其中适用以下规则:

产品- 许多零售商 产品 - 1 个品牌

零售商- 许多产品

每个零售商的价格可能会有所变化

所以我有 4 张桌子

product - (Product_ID), product name, brand_ID(FK), details
brand - (Brand_ID), brand name
retailer - (Retailer_ID), retailer_Name, Retailer_Telephone
Retailer_Product - (Product_ID, Retailer_ID), cost,

这很好用,因为您可以将产品与零售商相关联,并且并非所有零售商都提供所有产品等。每种产品都有一个固定的品牌。

我的问题来自品牌:

零售商可以提供 1 个或多个品牌,但不一定提供所有品牌?我在执行此操作时遇到问题?

所以我创建了一个 Retailer_Brand 表

retailer_brand - (retailer_Id, Brand_ID)

即使您已指定零售商到品牌链接,我仍然可以在零售商产品表中输入与零售商无关的品牌的产品。我错过了检查约束之类的东西还是我的架构错误?

谢谢

*编辑更多细节 *

我仍然不确定它是否能满足我的要求。

也许如果我添加以下示例,它将澄清。

我有一个我们可以提供的产品设置列表

例如名称 描述 品牌电视 32 英寸索尼电视 64 英寸索尼电视 20 英寸索尼电视 64 英寸三星电视 32 英寸三星电视 32 英寸松下

零售商 Uberhardware - 可以销售所有品牌的电视 SonyRetailer - 只允许销售 Sony 产品(所有产品) PanasonicRetailer - 仅限 Panasonic 产品

然后出现了一个我需要设置的新零售商:Phoenix Retail - 不允许销售索尼产品

我希望能够轻松地限制/启用每个零售商的不同品牌?

编辑 2

我已经实施了建议的备用密钥设计,但我仍然能够输入不正确的日期,请参阅下面的数据设置和预期结果,但是当我预计有些失败时,零售商产品表中的所有输入都会成功?

产品
ProductID BrandID
1 1
2 2

品牌
BrandID
1
2

零售商
1
2

零售商
品牌 零售商 ID 品牌 ID
1 1
2 1
2 2
3 1

RetailerProduct
RetaileID Brand ProductID 预期 1 1 1 OK 1 2 2 FAIL 2 1 1 OK 2 2 2 OK 3 2 2 FAIL

4

4 回答 4

1

让我看看我是否做对了。

产品

product_id
name
description
etc

品牌

brand_id
name
etc

零售商

retailer_id
name
etc

关系表 brand_prod_ret

retailer_id
product_id
brand_id
price
etc

例如,Uber 硬件零售商销售电视:LG、索尼、三星等。

优步硬件进入零售商

电视进入产品

您的product_idbrand_prod_ret表中的retailer_idbrand_id相匹配。

进入品牌有 LG、索尼、三星等。

并进入 brand_prod_ret 你有

TVs' ID - Sony's id -Uberhardware id
TVs' ID - Samsung's id - Uberhardware id
TVs' ID - LG's id - Uberhardware id

当然还有每个价格。

在此处输入图像描述

现在您可以确切地知道零售商目前正在销售的品牌

于 2012-06-21T15:27:08.863 回答
1
  • 备用键 (AK) --Product允许作为 FK(ProductID, BrandID)引用的唯一约束(带索引)。RetailerProduct

在此处输入图像描述

create table Product (
  ProductID integer not null
, BrandID   integer not null
);
alter table Product add constraint pk_product primary key (ProductID);
alter table Product add constraint un_product unique (ProductID, BrandID);

create table Brand (
  BrandID integer not null
);
alter table Brand add constraint pk_brand primary key (BrandID);

create table Retailer (
  RetailerID integer not null
);
alter table Retailer add constraint pk_retailer primary key (RetailerID);

create table RetailerBrand (
  RetailerID integer not null
, BrandID    integer not null
);
alter table RetailerBrand add constraint pk_retbra primary key (RetailerID, BrandID);


create table RetailerProduct (
  RetailerID integer not null
, ProductID  integer not null
, BrandID    integer not null
);
alter table RetailerProduct add constraint pk_retprd  primary key (RetailerID, ProductID, BrandID);

alter table RetailerProduct add constraint fk1_retprd
      foreign key (ProductID, BrandID) references Product (ProductID, BrandID);

alter table RetailerProduct add constraint fk2_retprd
      foreign key (RetailerID, BrandID) references RetailerBrand (RetailerID, BrandID);

编辑

插入一些数据

insert into Brand    (BrandID)                   values (1)  , (2);
insert into Product  (ProductID, BrandID)        values (1,1), (2,2);
insert into Retailer (RetailerID)                values (1)  , (2);
insert into RetailerBrand (RetailerID, BrandID)  values (1,1), (2,1), (2,2), (3,1);

测试

insert into RetailerProduct (RetailerID, BrandID, ProductID) values (1,1,1); -- OK

insert into RetailerProduct (RetailerID, BrandID, ProductID) values (1,2,2); -- FAIL

insert into RetailerProduct (RetailerID, BrandID, ProductID) values (2,1,1); -- OK

insert into RetailerProduct (RetailerID, BrandID, ProductID) values (2,2,2); -- OK

insert into RetailerProduct (RetailerID, BrandID, ProductID) values (3,2,2); -- FAIL
于 2012-06-21T16:35:03.730 回答
0

这种能力需要品牌表有什么理由吗?

我们与产品有多对多的关系 - 品牌零售商 - 零售商_产品品牌 - 零售商品牌

似乎您可以将品牌信息保留在retailer_product 表中。然后每一个输入的新品牌都可以进行pk链接。或者只能输入一个零售商到品牌的查找表来强制执行零售商协会 b/fa 的约束,新的retailer_product 可以输入

于 2012-06-21T15:38:55.770 回答
0

IMO 在您当前的结构中,表retailer_brand 不是绝对必要的,因为您始终可以通过浏览retailer_product => product => 品牌关系来确定零售商全部或部分库存的品牌。

我可以要求对您的业务领域进行一些澄清,这可能会影响您的数据建模吗?(我在零售商有一些经验),例如

品牌通常是特定于零售商的(例如,供应商生产的一系列产品纯粹是为一个零售商打上商标的)。您可能会考虑将供应商表添加到您的模型中。

零售商连锁店内的商店通常不会储存所有产品。您可能需要在模型中考虑这一点。

我不确定您是面向消费者还是面向供应商的业务,但您可能需要对成本价格和销售价格进行建模。

价格应包括日期从/日期到

等等

于 2012-06-21T15:45:22.487 回答