I want to query from tableUSA name_column , address_column, postalcode_column
And
From tableCANADA name_column , address_column, postalcode_column
And basically compare both tables to see if there is data missing in TableUSA
I want to return the difference (whatever that's missing in TableUSA).
Please keep in mind that some addresses will use Street, Boulevard, Canyon. While others, will use ST, BLVD, CYN etc.
Lastly, there are companies that use Corporations/Corp, LLC/Limited Liability Company, LP/Limited Partnership etc. How can I solve this? I want to avoid manual matching as much as I can.
Thank you