I have 500 records in Excel and it contains some columns which is same as the columns in SQL DB Table. I have old column value as well as new column value in excel.
Example
Excel
Name Age OldEmployeeID NewEmployeeID
x 1 100 200
y 2 101 201
z 3 102 202
SqlTable
EmployeeTable
Name Age Department City EmployeeID
x 1 HR x 100
a 4 HR x 103
y 2 Admin x 101
b 5 Finance x 104
c 3 IT x 102
I want to update EmployeeID column in SQL Table as NewEmployeeID which is there in excel. Can anyone suggest how to write a sql query to update the sql table.

EmployeeIDan identity column?