Returns the geometry corresponding to the topological intersection of the two geometries (operation AND).

1 geo.intersection

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