我有以下表格
Products, Prices, stores (Suppliers) and Country
产品表:
ProductID, ProductName
存储表:
StoreID, StoreName, Country (country name of the supplier)
价格表:
PriceID, Date, Price, StoreID, ProductID
国家表
CountryID, StoreID, CountryName
示例价格表数据(ID、日期、价格、StoreID、ProductID)
1, 01-10-2014, 1500, 1, 8
2, 01-10-2014, 1800, 2, 9
3, 10-10-2014, 1700, 2, 8
4, 01-09-2014, 1200, 1, 8
5, 07-09-2014, 1300, 2, 8
在商店表
1, Supplier1, UAE
2, Supplier2, GB
在产品表中
8, iPad Air 32GB 4G
9, iPad Air WiFi 16GB
现在我需要创建一个基于折线的图表。图表上有两条线。要创建这两行,我需要此表中的两列 - 阿联酋和英国
所以我的预期结果是
ID Date UAEPrice UKSupplier SupplierName
1 01-10-2014 1500 Null Supplier-1
2 01-10-2014 NULL 1800 Supplier-2
3 10-10-2014 NULL 1700 Supplier-2
4 01-09-2014 1200 Null Supplier-1
5 07-09-2014 Null 1300 Supplier-1
我对此感到困惑......目前我正在尝试使用两个表视图(一个带有stores.countryID = 'AE'
,一个带有stores.CountryID <> 'AE'
)。
请帮忙。