我有一个看起来像这样的查询:
SELECT cu.CustomerCountryID,
pr.ProviderCountryID,
po.ProductCountryID
FROM tblCustomer cu
INNER JOIN tblProvider pr
ON cu.ProvID = pr.ProvID
INNER JOIN tblProduct po
ON pr.ProdID = po.ProdID
然后是包含国家名称的第四个表。我想用 CountryName 替换 CountryID。
我现在想不出如何在不产生子查询的情况下做到这一点
谁能建议更快的方法来做到这一点?
谢谢