ST_DIFFERENCE
Syntax
ST_DIFFERENCE(g1,g2)
Description
Returns a geometry representing the point set difference of the given geometry values.
Example
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) | +------------------------------------+
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.