UNION joins two results and remove duplicates, while UNION ALL does not remove duplicates. UNION also sort the final output.
UNION
UNION ALL
W
Try this:
SELECT DISTINCT * FROM ( SELECT column1, column2 FROM Table1 UNION ALL SELECT column1, column2 FROM Table2 UNION ALL SELECT column1, column2 FROM Table3 ) X ORDER BY Column1