How can I insert the below "Select" queries results (that works) in to one (1) table.
SELECT Leadership.Name, Leadership.Survey_Taker_Telephone_Number, Leadership.Type, Leadership.Type_Score, Leadership.Contact_Me
FROM Leadership
Union
SELECT Administration.Name, Administration.Survey_Taker_Telephone_Number, Administration.Type, Administration.Type_Score, Administration.Contact_Me
FROM Administration;
SELECT Leadership.Name, Leadership.Survey_Taker_Telephone_Number, Leadership.Type, Leadership.Type_Score, Leadership.Contact_Me
FROM Leadership
Union
SELECT Administration.Name, Administration.Survey_Taker_Telephone_Number, Administration.Type, Administration.Type_Score, Administration.Contact_Me
FROM Administration;