我有下表:
BoughtItems
UserID ItemID StoreID Quantity Price
1 1 1 1 1
1 4 1 2 3
1 5 2 1 3
让我们假设BoughtItems
表中每个用户的项目不超过五个。
我想拥有来自某个 StoreID 的所有客户和所有购买的商品,采用这种格式......对于 StoreID = 1,结果将是:
UserID Item1ID Item2ID Item3ID Item4ID Item5ID
1 1 4 [empty] [empty] [empty]