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>
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>