gpt4 book ai didi

postgresql - PostgreSQL中的&&是什么意思?

转载 作者:行者123 更新时间:2023-11-29 12:01:35 24 4
gpt4 key购买 nike

在PostGIS中,两个几何图形之间的&&运算结果是什么?在我看来,&& 返回一个 boolean,但这次确实返回了 geometry。在下面的示例中,操作是在 LineStringPolygon 之间进行的。

首先,我猜想这就是包容和被包容的关系。直到我做了下面的例子,我认为这应该是一个“交集”类型的关系。我说得对吗?

select ST_geomfromtext('linestring(0.1 0.1,1.9 1.9)', 4326) && st_geomfromtext('POLYGON((0 0,0 1,1 1,1 0,0 0))', 4326)

结果是t,代表true

最佳答案

这是一个交集运算符 &&

boolean &&( geometry A , geometry B );

boolean &&( geography A , geography B );

The && operator returns TRUE if the 2D bounding box of geometry A intersects the 2D bounding box of geometry B.

如何使用 google 找到它:

  1. 搜索“postgis 运算符(operator)”
  2. 在第一页https://postgis.net/docs/reference.html搜索 &&

关于postgresql - PostgreSQL中的&&是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57319206/

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