Suppose I have two tables, t1 and t2 which are identical in layout but which may contain different data.
What\'s the best way to diff these two tables?
Fast solution:
SELECT * FROM TABLE1 MINUS SELECT * FROM TABLE2
No records should show...