-
To separate the uncommon rows of one table (rows that exist in one table but not in another)
Using a LEFT JOIN To isolate the uncommon rows in the table one SELECT t1.*FROM Table1 t1LEFT JOIN Table2 t2…
Using a LEFT JOIN To isolate the uncommon rows in the table one SELECT t1.*FROM Table1 t1LEFT JOIN Table2 t2…