Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例子:
数据库纬度值:33.3360705
来自 android 设备纬度值的位置:33.33607
这些在技术上是不一样的,但差异是如此之小,以至于我想将它们视为相同。
我该怎么做?:)
谢谢。
从数据库中获取值时只需ROUND在 MySQL 中使用。以下将四舍五入到小数点后 5 位(与您的 android 设备值匹配):
ROUND
SELECT ROUND(myValue, 5) FROM myTable