gpt4 book ai didi

mysql - 1064 MYSQL 误差距离公式

转载 作者:行者123 更新时间:2023-11-30 01:26:46 25 4
gpt4 key购买 nike

我有这个查询:

SELECT
*,
SQRT(POW( 69.1 * ( latitude - ) , 2 )
+ POW( 69.1 * ( - longitude ) * COS( latitude /57.3 ) ,2) ) AS distance
FROM
properties
HAVING
distance < 5
ORDER BY
distance

但是当我尝试运行它时,出现此错误:

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use ;

我做错了什么?它在 MYSQL 5.0 中不起作用,但在 MYSQL 5.5 中工作正常。

最佳答案

使用这个:

SELECT
*,
SQRT(POW( 69.1 * ( latitude ) , 2 )
+ POW( 69.1 * ( longitude ) * COS( latitude /57.3 ) ,2) ) AS distance
FROM
properties
HAVING
distance < 5
ORDER BY
distance

这应该返回您想要的结果集。
如果没有,请告诉我。

-- 探索者01

关于mysql - 1064 MYSQL 误差距离公式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17920283/

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