Returns TRUE if the geometries shares any portion of the space. This means, if they are not disjoint.

1 geo.intersects

<geo.intersects>
    <geom1> *
        <geom1 /> *
    </geom1>
    <geom2> *
        <geom2 /> *
    </geom2>
</geo.intersects>
Example
Copy
<select>
    <columns>
       <geo.intersects>
            <geom1>geometry_col_1</geom1>
            <geom2>geometry_col_2</geom2>
       </geo.intersects>
    </columns>
    <from table='buildings' alias='a' >
    </from>
    <where>
        a.name = 'MACBA'
    </where>
</select>