Możesz to zrobić za pomocą zapytania:
select (case when city = 'mumbai' then 'pune'
when city = 'pune' then 'mumbai'
else city
end)
. . .
Jeśli chcesz zmienić wartości, to:
update table t
set city = (case when city = 'mumbai' then 'pune'
when city = 'pune' then 'mumbai'
end)
where city in ('mumbai', 'pune');