Skip to content

Commit

Permalink
πŸ“ corrected postgis function
Browse files Browse the repository at this point in the history
  • Loading branch information
osundwajeff authored and DelazJ committed May 18, 2023
1 parent fdd3e9e commit 9c4b214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/training_manual/spatial_databases/spatial_queries.rst
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ As a view:
CREATE VIEW vw_regions_adjoining_hokkaido AS
SELECT b.gid, b.name, b.the_geom
FROM region a, region b
WHERE TOUCHES(a.the_geom, b.the_geom)
WHERE st_touches(a.the_geom, b.the_geom)
AND a.name = 'Hokkaido';
In QGIS:
Expand Down

0 comments on commit 9c4b214

Please sign in to comment.