The keyword you're looking for is UNION:
SELECT column 1 AS newColumn
FROM...
UNION
SELECT column2 AS newColumn
FROM...
ORDER BY newColumn
This of course gets unwieldy if you need to combine multiple columns - ideally avoid having to do it by storing data as raw as possible and aggregating instead.