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

Modifica la tabella MySQL

Prova questo:

UPDATE yourtable
SET year = year + IF(year >= 50, 1900, 2000)

Funzionerà sia se la tua colonna è di tipo intero sia se è un tipo di carattere.