Created
July 19, 2013 18:50
-
-
Save nurey/6041463 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT "places".* FROM ( | |
SELECT | |
*, | |
ST_Distance_Sphere(geom, 'SRID=4326;POINT(-79.3937393 43.6526704)') as distance | |
FROM places | |
ORDER by geom <#> 'SRID=4326;POINT(-79.3937393 43.6526704)' LIMIT 50 | |
) AS places | |
WHERE "places"."place_category_id" = 10 ORDER BY distance ASC LIMIT 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment