I have PostgreSQL installed with PostGis, I try to run the following:
SELECT N1.edname AS "Borders Royal Exchange A"
FROM eds_census2011 N1, eds_census2011 N2
WHERE Touch(N1.the_geom, N2.the_geom)
AND N2 = 'Royal Exchange A'
And I get an error (below) is there anything I have to add to Postgres or enable something?
ERROR: function touch(geometry, geometry) does not exist LINE 3: WHERE Touch(N1.the_geom, N2.the_geom) ^ HINT: No function matches the given name and argument types. You might need to add explicit type casts. ********** Error ********** ERROR: function touch(geometry, geometry) does not exist SQL state: 42883 Hint: No function matches the given name and argument types. You might need to add explicit type casts. Character: 96