I need to compare the results of two queries from the same table and display the results that are NOT the same in the second query.
i.e.
SELECT * FROM tableA WHERE userID = 1;
Results In
A
B
C
SELECT * FROM tableA WHERE userID = 2;
Results In
C
D
E
I would want D & E to be printed. Any idea on this query? This query is from the same table, not two different tables.