Returns TRUE only if there is not a point of geom2 located inside of the geom1 and at least one point is of geom2 is located inside
of geom1. So, it will return TRUE if the inside and the edge of geom2 are located completely inside of geom1.
1 geo.contains
<geo.contains>
<geom1> *
<geom1 /> *
</geom1>
<geom2> *
<geom2 /> *
</geom2>
</geo.contains>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Egeom1 | |||||
Egeom1 | geometry | ||||
Egeom2 | |||||
Egeom2 | geometry |
Example
Copy
<select> <columns> <geo.contains> <geom1>geometry_col_1</geom1> <geom2>geometry_col_2</geom2> </geo.contains> </columns> <from table='buildings' alias='a' > </from> <where> a.name = 'MACBA' </where> </select>