आप इसे एक प्रश्न के साथ कर सकते हैं:
select (case when city = 'mumbai' then 'pune'
when city = 'pune' then 'mumbai'
else city
end)
. . .
यदि आप मान बदलना चाहते हैं, तो:
update table t
set city = (case when city = 'mumbai' then 'pune'
when city = 'pune' then 'mumbai'
end)
where city in ('mumbai', 'pune');