Example of what I have:
SELECT [thing] FROM [A]
UNION ALL
SELECT [thing] FROM [B]
UNION ALL
SELECT [thing] FROM [C]
UNION ALL
SELECT [thing] FROM [D]
UNION ALL
SELECT [thing] FROM [E]
In my union I want thing to be sorted by oldest to newest entry date. So, if I add a value to my thing field from table A today I want to see that value get sorted to the bottom of my column in my union query. Is there a way to do this by using Order By?