So here's my setup I have 2 tables Old and New with the following (simplified) schemas
Old
[ManName]
[ManNumber]
New
[Manager_Name]
[Manager_Number]
I'm looking to craft a SQL query that returns the following but in 4 columns in 1 query as opposed to 2 queries with 2 columns each
select distinct manname, mannumber from OLD
select distinct Manager_Name, Manager_Number from NEW
So my ideal Result Set would have 4 columns:
ManName ManNumber Manager_Name Manager Number
Thanks!