Orderinfo connects customer-side content without expanding to the product level, so cannot have filter logic with Goodsbrand. C is correct.
根據(jù)給出的E-R圖示,Goodsbrand 表包含產(chǎn)品品牌信息。我們需要分析 Goodsbrand 表與其他表的關(guān)系,以確定它不能過(guò)濾的表。
首先,我們需要了解每個(gè)表的功能和它們之間的關(guān)系:
1. **Goodsbrand**:包含產(chǎn)品品牌信息。
2. **Goodsinfo**:包含產(chǎn)品的具體信息,通常與 Goodsbrand 通過(guò)品牌ID(BrandID)關(guān)聯(lián)。
3. **Orderdetail**:包含訂單的具體詳情,通常與 Goodsinfo 通過(guò)產(chǎn)品ID(ProductID)關(guān)聯(lián)。
4. **Orderinfo**:包含訂單的總體信息,通常與 Orderdetail 通過(guò)訂單ID(OrderID)關(guān)聯(lián)。
從圖示中可以推斷出以下關(guān)系:
- Goodsbrand 和 Goodsinfo 通過(guò) BrandID 關(guān)聯(lián)。
- Goodsinfo 和 Orderdetail 通過(guò) ProductID 關(guān)聯(lián)。
- Orderdetail 和 Orderinfo 通過(guò) OrderID 關(guān)聯(lián)。
因此,Goodsbrand 可以通過(guò) BrandID 直接過(guò)濾 Goodsinfo 表中的數(shù)據(jù);通過(guò) Goodsinfo 表中的 ProductID,它可以間接過(guò)濾 Orderdetail 表中的數(shù)據(jù);最后,通過(guò) Orderdetail 表中的 OrderID,它可以間接過(guò)濾 Orderinfo 表中的數(shù)據(jù)。
綜上所述,Goodsbrand 表可以過(guò)濾 Goodsinfo、Orderdetail 和 Orderinfo 表中的數(shù)據(jù)。
所以,正確答案是:D: All of the above。