I have two tables and I want to display all the records that are in Ord_tbl who's System field does not
match the PartsDesc field in my IOM_tbl but am not able to get the query set up correctly.
Here is what my query looks like but it is displaying all records in the Ord_tbl:
What am I missing?
Thanks
match the PartsDesc field in my IOM_tbl but am not able to get the query set up correctly.
Here is what my query looks like but it is displaying all records in the Ord_tbl:
Code:
SELECT Ord_tbl.Date, Ord_tbl.Cust_Name, Ord_tbl.System
FROM Ord_tbl LEFT JOIN IOM_tbl ON Ord_tbl.[System] = IOM_tbl.[PartDesc];
What am I missing?
Thanks