盖伊GQL 数学运算的限制
我相信 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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