Mysql
 sql >> Datenbank >  >> RDS >> Mysql

sql-Abfrage, um City Pune in Mumbai und Mumbai in Pune in der Tabelle zu ersetzen

Sie können dies mit einer Abfrage tun:

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

Wenn Sie die Werte ändern möchten, dann:

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