盖伊GQL 数学运算的限制

发布于 2024-12-01 00:16:35 字数 381 浏览 1 评论 0原文

我相信 GQL 可以执行的数学运算有限制。以下 SQL 语句适用于普通关系数据库系统:

SELECT id, ( 3959 * acos( cos( radians(lat_t) ) * 
cos( radians( lat ) ) * cos( radians( lng ) - radians(lng_t) )
+ sin( radians(lat_t) ) * sin( radians( lat ) ) ) ) AS distance
FROM Stores HAVING distance < 25 ORDER BY distance

有谁知道如何使用 GQL 语句执行上述 SQL 语句?或者至少可以替代 GQL 中的 cos、弧度、sin 等数学运算?紧迫的。

I believe there are restriction of math operation can be performed for GQL. The following SQL statement works in normal relational database system:

SELECT id, ( 3959 * acos( cos( radians(lat_t) ) * 
cos( radians( lat ) ) * cos( radians( lng ) - radians(lng_t) )
+ sin( radians(lat_t) ) * sin( radians( lat ) ) ) ) AS distance
FROM Stores HAVING distance < 25 ORDER BY distance

Does anyone know how to do above SQL statement using GQL statement? or at least alternative to replace the math operation of cos, radians, sin, etc in GQL? Urgent.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落花浅忆 2024-12-08 00:16:35

AppEngine 不支持 GQL 中的此类查询。您只能对等式和不等式执行简单的选择。

不过,您可以使用地理哈希来模拟地理搜索:

http://code.google。 com/appengine/articles/geosearch.html

AppEngine doesn't support this type of query in GQL. You can only perform simple selects on equalities and inequalities.

You can emulate geo-searching using geo-hashing, however:

http://code.google.com/appengine/articles/geosearch.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文