Hi everyone, I am encountering a blank query. I know some other people may have posted it too, but my problem doesn't look quite the same. It works fine when I only linked to Table "04_Purchase_Orders" and other tables, it works fine alone too. But it shows completely blank like shown below when I try to link to Table "06_Inventory", which is also shown below. The item "Parts Name" of the two tables are joint, but I don't see how it affects the query. As you can see, all three items of the query are drawn from 04_Purchase_Orders, not even from the problematic table. So, I really do not understand what is going on. I hope there is a solution to this other than deleting and re-creating the entire table 06.
Does anyone have any idea? Thanks!The SQL of the query is shown below.
SELECT [04_Purchase_Orders].[Parts Name], [04_Purchase_Orders].Supplier, [04_Purchase_Orders].[Transaction Date]
FROM 04_Purchase_Orders INNER JOIN 06_Inventory ON [04_Purchase_Orders].[Parts Name] = [06_Inventory].[Parts Name];