In a query using UNION ALL with a final ORDER BY, you sort by ordinal position 2. What does that reference, and which set of column names wins?SELECT name, hired AS d FROM emp UNION ALL SELECT title, created AS d FROM contractor ORDER BY 2;