gpt4 book ai didi

postgresql - 即使答案为 0,Postgis 也使用包含和计数

转载 作者:行者123 更新时间:2023-11-29 13:35:34 25 4
gpt4 key购买 nike

我的计数函数有问题...我想隔离位于 G10 多边形旁边的所有多边形,我想计算多边形(社区)中的点数(地铁站),但我想收到一个答案,即使该答案必须为 0。

我使用了以下语句:

select a2.name, count(m.geom) 
from arr a1, arr a2, metro m
where n1.code='G10'
and ((st_touches(a1.geom, a2.geom)) or
(st_overlaps(a1.geom, a2.geom)))
and ST_Contains(a2.geom, s.geom)
group by a2.name, m.geom

我知道问题在于 where 子句的 和 ST_Contains(a2.geom, s.geom) 部分,但我现在不知道如何解决它!

最佳答案

使用显式LEFT JOIN:

SELECT  a1.name, COUNT(a2.code)
FROM arr a1
LEFT JOIN
arr a2
ON ST_Intersects(a1.geom, a2.geom)
WHERE a1.code = 'G10'

我不包括其他表,因为您在原始查询中有明显的拼写错误,并且不清楚它们应该如何连接

关于postgresql - 即使答案为 0,Postgis 也使用包含和计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13213466/

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