I have two Tables that I would like to run exception on.
Table 1 'Retail'
Columns in Retail is as follows.
Branch_Name, Customer_Name, Document_Number
Table 2 'Doc'
Branch_Name, Customer_Name, Invoice_Number
Now document number and Invoice number is the same thing.
what I want the query to show me is, how many records do we not have in Doc that is in retail.
Example. 'Retail'
Branch_Name, Customer_Name, Document_Number
sat BOSS s11121
bat Kiven s25456
Table 2 'Doc'
Branch_Name, Customer_Name, Invoice_Number
sat BOSS s11121
Result
We are missing,
Branch_Name, Customer_Name, Invoice_Number
bat Kiven s25456
thank you