How would I find the differences between two select statements based on the same table? For example:
SELECT ID
FROM Table as TableA
WHERE Date = '2016-04-30'
Based on the above select statement, I want to find all the IDs that don't exist in:
SELECT ID
FROM Table as TableB
WHERE Date = '2016-03-31'