I have two tables with identical fields, 35 identical fields.
I know I can find out what rows do not exist in one of them by using
SELECT first.a, first.b, first.c FROM first LEFT JOIN second USING(a,b,c)
WHERE second.a IS NULL
What I am wondering is whether there is any simpler way to write this considering that the table columns and column order are identical?