I have an existing table named Employee
and have to add a new column Employee_Id
.
EmployeeId
should be 10 digit unique number and always have to start with 10
.
For example
1000000000
1000000001
1023456789
So I need to add bunch of unique 10 digit Id's to an existing table which already has data.
Can anyone help me sort this out.