TSQL How do I create a new table from two existing table? Want a new table Called EmployeeInfo that has the information from both EmploeeDemographics and EmployeeSalary
SELECT *
FROM [dbo].[EmploeeDemographics]
right outer join [dbo].[EmployeeSalary]
on EmploeeDemographics.EmployeeID=EmployeeSalary.EmployeeID