sorry my bad yes the ntest1 emp_name column should be the only table to be updated how should i code it...my existing code does not work
Code:
UPDATE nTest1
SET emp_name = nTest2.emp_name
FROM (SELECT emp_name FROM nTest2 WHERE nTest1.emp_id = nTest2.emp_id)
|
__________________
________________________________________
- Don't cry bcoz its over, Smile bcoz it happens...
Last edited by eByong; 04-27-2008 at 06:38 PM.
Reason: no codes tag
|