I have two columns in different product tables.
tblproduct1.partno
is an old product list
tblproduct2.partno2
is a new one
Both partno
columns should have identical model numbers but they don't.
When executing the below query, I get about 300 model numbers that don't match when comparing counts from both tables. tblproduct2
has 1955 records, the query below is 1638. I would expect it to return 1955.
SELECT COUNT(partno)
FROM tblproduct1
INNER JOIN tblproduct2 ON partno = partno2
Is there a way I can list the model numbers that don't match?