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.
从位置限制 10 中选择名称、纬度、液化天然气
如果我想要 lat 和 lng 的小数点后的特定位数恰好是浮点值怎么办?
如果 X 是您想要的位数:
select name, round(lat, X, 1), round(lng, X, 1) from locations limit 10
如果要舍入和截断,则取出舍入函数的 1 参数。
假设你想得到 .3
select name , lat , lng from locations where lat like '%.3' and lng like '%.3' limit 10