How would I add to this code to Update if the record exists and only Insert if it doesn't? EmpID is unique.INSERT INTO Employee( EmpID ,EmpFullName ,AU ,EmpEmail ,EmpPhone ,MgrEmpID ,MgrFullName ,MgrEmail)SELECT [dbo].[HR_Import].EMPLID ,[dbo].[HR_Import].NAME ,[dbo].[HR_Import].AU ,[dbo].[HR_Import].EMAIL_ID ,[dbo].[HR_Import].WORK_PHONE ,[dbo].[HR_Import].REPORTS_TO_MGR_EMPLID ,[dbo].[HR_Import].REPORTS_TO_MGR_NAME ,[dbo].[HR_Import].REPORTS_TO_MGR_EMAILFROM [dbo].[HR_Import]
Duane