RATE THIS ANSWER
+1
Click to Vote:
1
0
You could use the DECODE function.
Something like this:
UPDATE table_name
SET name = decode(oldname,1,name1,2,name2,3,name3)
WHERE oldname in (1,2,3);
Last Answered:
Mar 31 2009 2:34 PM GMT by Carlosdl 
29820 pts.