Dear All,
I have a query regarding Update statement..
1 > There are 2 tables ,Table 1 ,Table 2
in Table 1 -- columns (ID,Email)
in Table 2 -- Cloumns (EmpID,Email,Age,Status...)
2> I want an update statement
where
update table 1
set table 1.Email = table2.Email
where table1.ID = table2.EmpID
Error : The multi-part identifier "table2.EmpID
" could not be bound.
pls give me a solution