Hi,
I am not sure I understand the table structure. But I will give this a try anyway. If these tables have the same sort of information you could use a union query:
Select 1 AS IsUSCitizen, SSN AS ID, Name, Access From Table_1
UNION ALL
Select 0 AS IsUSCitizen, IDnumber AS ID, Name, Access...