|
SQL query, comparing tables
Here's what I want to do:
table1.records
table2.records
Each has approx 50,000 records, and they're supposed to be in sync The problem is, table2.records has 37 less records than table1.records.
What sort of SQL query can I run to compare the tables and determine which records are missing from table2?
|