I have a table in access that I want to inner join with data that I am getting through a passthru query. However I keep getting an error message table not found. Here is my code, any help would be appreciated
SELECT National_Stock_Number, Acquisition_Method_Code, Acquisition_Method_Suffix_Code, Annual_Demand_Value, Total_On_Hand_Qty, Acquisition_Cost, Total_Quantity_On_Backorder, critical_item_code
FROM DSS_USER.C_FILE INNER JOIN Table1 ON National_stock_Number =Table1.NSN
SELECT National_Stock_Number, Acquisition_Method_Code, Acquisition_Method_Suffix_Code, Annual_Demand_Value, Total_On_Hand_Qty, Acquisition_Cost, Total_Quantity_On_Backorder, critical_item_code
FROM DSS_USER.C_FILE INNER JOIN Table1 ON National_stock_Number =Table1.NSN