Answers:
您可以使用ST_ClusterIntersecting来做到这一点:
SELECT attr, unnest(ST_ClusterIntersecting(geom))
FROM lines
GROUP by attr;
ST_ClusterIntersecting()
可从PostGIS 2.2获得。...有较旧版本的解决方案吗?我使用的是PostGIS 2.1.8,目前无法升级PostGIS。
ST_ClusterIntersecting
。2.2之前的一些想法位于gis.stackexchange.com/q/94203/18189