Database is for part numbers and usage. One table consists of part numbers on hand (MFG), and other specifics. The other table(s) consists of quantities of each part number (Quantity) that is exported weekly from SAP. Trying to blend 2 tables (only 2 fields per table) to give me weekly usage visable across the entire inventory, even if the value is 0 or null. There are both MFG and Quantity fields in both tables, and the MFG field in quantity table is duplicated for different dates of usage.?
This is what I have so far...it does not work.
SELECT [Parts Mar 12].Quantity, [Parts 2-24-13].Quantity
FROM [Parts 2-24-13] INNER JOIN [Parts Mar 12] ON [Parts 2-24-13].MFG = [Parts Mar 12].MFG
WHERE ((([Parts 2-24-13].Quantity)=[Parts Mar 12].[Quantity]))(+);
Any help would be appreciated, Thank you.