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

Come posso convertire una stringa in un float in mysql?

Si scopre che mi mancava solo DECIMAL sul CAST() descrizione:

Pertanto, la seguente query ha funzionato:

UPDATE table SET
latitude = CAST(old_latitude AS DECIMAL(10,6)),
longitude = CAST(old_longitude AS DECIMAL(10,6));