Hi Guys
I have a query that looks at 2 tables and returns the values that are in both and this is fine
However I need to replicate this but with the results returned being the values that are not in both tables
Whats the easiest way of doing this?
SQL for working Query is below:
SELECT Query1.[Part Number], Query1.Status, Query1.Composition
FROM Query1 INNER JOIN RRD_Parts_List ON Query1.[Part Number] = RRD_Parts_List.Partnumber;
Thanks in advance
I have a query that looks at 2 tables and returns the values that are in both and this is fine
However I need to replicate this but with the results returned being the values that are not in both tables
Whats the easiest way of doing this?
SQL for working Query is below:
SELECT Query1.[Part Number], Query1.Status, Query1.Composition
FROM Query1 INNER JOIN RRD_Parts_List ON Query1.[Part Number] = RRD_Parts_List.Partnumber;
Thanks in advance