Re: Slow query: Select all buildings that have >1 pharmacies and >1 schools within 1000m - Mailing list pgsql-performance

From Tomas Vondra
Subject Re: Slow query: Select all buildings that have >1 pharmacies and >1 schools within 1000m
Date
Msg-id d4e1e0255d5658c1fec9033b59f238b0.squirrel@sq.gransy.com
Whole thread Raw
In response to Re: Slow query: Select all buildings that have >1 pharmacies and >1 schools within 1000m  (Stefan Keller <sfkeller@gmail.com>)
List pgsql-performance
On 7 Srpen 2012, 14:22, Stefan Keller wrote:
> Your proposal lacks the requirement that it's the same building from
> where pharmacies and schools are reachable.
> But I think about.

I don't know the dataset so I've expected the osm_id to identify the
building - then the intersect should work as AND for the conditions.

And I see I've forgot to include the 'is building' condition, so it should
be like this:

 SELECT b.osm_id FROM osm_poi AS p, osm_polygon b
    WHERE p.tags @> hstore('amenity','pharmacy')
    AND b.tags @> hstore('building','yes')
    AND ST_DWithin(b.way,p.way,1000)
 INTERSECT
 SELECT b.osm_id FROM osm_poi AS p, osm_polygon b
    WHERE p.tags @> hstore('amenity','school')
    AND b.tags @> hstore('building','yes')
    AND ST_DWithin(b.way,p.way,1000)

Tomas


pgsql-performance by date:

Previous
From: Stefan Keller
Date:
Subject: Re: Slow query: Select all buildings that have >1 pharmacies and >1 schools within 1000m
Next
From: Craig James
Date:
Subject: Re: Slow query: Select all buildings that have >1 pharmacies and >1 schools within 1000m