我有4張表正在加入Adventureworks 2012.我無法弄清楚爲什麼我得到'無法綁定的錯誤'。無法綁定SQL Server 2012多部分標識符
消息4104,級別16,狀態1,行7
多部分標識符 「Production.ProductCategory.Name」 不能被約束。
消息4104,級別16,狀態1,行
多部分標識符 「Production.ProductCategory.Name」 無法綁定。
SELECT
COUNT(WorkOrderID) AS TotalWorkOrders,
[Production].[ProductCategory].[Name]
FROM [Production].[WorkOrder] WO
INNER JOIN [Production].[Product] P ON WO.[ProductID] = P.[ProductID]
INNER JOIN [Production].[ProductSubcategory] PS ON PS.[ProductSubcategoryID] = P.[ProductSubcategoryID]
INNER JOIN [Production].[ProductCategory] PC ON PC.[ProductCategoryID] = PS.[ProductCategoryID]
WHERE WO.[StartDate] >= '1999—03-08' AND WO.[StartDate] <= '2008-05-02'
GROUP BY [Production].[ProductCategory].[Name]
我只是想通了,即將刪除我的問題,雖然多謝 – Iansberg