postgres 空间索引

发布于 2024-09-27 19:51:17 字数 209 浏览 3 评论 0原文

我似乎找不到太多这方面的文档。 在 postgres 上创建支持这样的查询的数据库/表的最简单方法是什么 SELECT * FROM table WHERE distance(POINT(0,0), table.location) <= 1000m; 其中 POINT(0,0) 和 table.location 应该是纬度/经度对,1000m 是 1000 米。我应该如何对该表建立索引? 谢谢。

I can't seem to find much documentation on this.
What's the simplest way to create a database/table on postgres supporting a query like this SELECT * FROM table WHERE distance(POINT(0,0), table.location) <= 1000m;
Where POINT(0,0) and table.location should be latitude/longitude pair, and 1000m is 1000 meters. And how should I go about indexing that table?
Thanks.

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

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

发布评论

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

评论(2

枫以 2024-10-04 19:51:17

PostgreSQL 支持表达式索引和部分索引,您可以混合使用它们。

这只是一个随机猜测,我不知道它是否有效,但请尝试一下:

CREATE INDEX foobar ON table (distance(POINT(0,0), location))
 WHERE distance(POINT(0,0), location) <= 1000;

http://www.postgresql.org/docs/9.0/interactive/indexes-expressional.html

http://www.postgresql.org/docs/9.0/interactive/indexes-partial.html

PostgreSQL support indexes on expressions and also partial indexes, you can probably mix them.

This is just a random guess, I don't know if it works, but give it a try:

CREATE INDEX foobar ON table (distance(POINT(0,0), location))
 WHERE distance(POINT(0,0), location) <= 1000;

http://www.postgresql.org/docs/9.0/interactive/indexes-expressional.html

http://www.postgresql.org/docs/9.0/interactive/indexes-partial.html

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