gpt4 book ai didi

mysql - 如何在mysql中将字符串转换为 float ?

转载 作者:IT老高 更新时间:2023-10-28 12:58:39 24 4
gpt4 key购买 nike

我有一个表,其中包含存储为字符串 (VARCHAR) 的纬度和经度值,我想将其转换为 FLOAT (10,6)

但是,使用 CAST()CONVERT() 似乎没有一种直接的方法。

如何轻松转换这些列?这是一次性转换。

最佳答案

原来我只是在 CAST() 描述中遗漏了 DECIMAL:

DECIMAL[(M[,D])]

Converts a value to DECIMAL data type. The optional arguments M and D specify the precision (M specifies the total number of digits) and the scale (D specifies the number of digits after the decimal point) of the decimal value. The default precision is two digits after the decimal point.

因此,以下查询有效:

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

关于mysql - 如何在mysql中将字符串转换为 float ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7368163/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com