fikir
Programmer
- Jun 25, 2007
- 86
I am trying to add a column to existing table and update it
it is erroring out
here is the code
alter table employee add stu_id numerin(10)
update employee
set stu_id = e2.stu_id
from employee e1 inner join employee2 e2
on e1.id = e2.id
Thanks,
it is erroring out
here is the code
alter table employee add stu_id numerin(10)
update employee
set stu_id = e2.stu_id
from employee e1 inner join employee2 e2
on e1.id = e2.id
Thanks,