Mysql
 sql >> Database >  >> RDS >> Mysql

sql query per sostituire city pune a mumbai e mumbai a pune nella tabella

Puoi farlo con una query:

select (case when city = 'mumbai' then 'pune'
             when city = 'pune' then 'mumbai'
             else city
        end)
. . .

Se vuoi cambiare i valori, allora:

update table t
     set city = (case when city = 'mumbai' then 'pune'
                      when city = 'pune' then 'mumbai'
                 end)
     where city in ('mumbai', 'pune');