In your query, go into SQL View and type in your select statements
The first select statement establish the name and order of fields within your query.
Example:
SELECT LastName, FirstName, SSN FROM Table1
UNION SELECT lname, fname, SS_Num FROM table2
In your query results set, the fields...