ST_DIFFERENCE(g1,g2)
Returns a geometry representing the point set difference of the given geometry values.
SET @g1 = POINT(10,10), @g2 = POINT(20,20); SELECT ST_AsText(ST_Difference(@g1, @g2)); +------------------------------------+ | ST_AsText(ST_Difference(@g1, @g2)) | +------------------------------------+ | POINT(10 10) | +------------------------------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/st_difference/