Hi,
I have the Table structure as :
emp table
eid ename
100 abc
200 def
101 cba
is it possible to update the "ename" column in single update query?
like say for Eid =100 "abc" i want to update as "cba" and
for Eid= 101 "cba" as "abc" in a single update.
How can i do that?