Returns TRUE if the geometries have at least one point in common, but the interiors do not intersect.
1 geo.touches
<geo.touches>
<geom1> *
<geom1 /> *
</geom1>
<geom2> *
<geom2 /> *
</geom2>
</geo.touches>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Egeom1 | |||||
Egeom1 | geometry | ||||
Egeom2 | |||||
Egeom2 | geometry |
Example
Copy
<select> <columns> <geo.touches> <geom1>geometry_col_1</geom1> <geom2>geometry_col_2</geom2> </geo.touches> </columns> <from table='buildings' alias='a' > </from> <where> a.name = 'MACBA' </where> </select>