JV,
I think you might want to you a UNION ALL if you want to list all of the SSN's on both tables,
Some thing like this,
SELECT Employee.First AS Name, "First Name" as TYPE
FROM Employee;
UNION ALL SELECT Employee.Last, "Last Name"
FROM Employee
ORDER BY 1;
Let me know how this goes VJ
Later,
Fritts