ST_UNION
Sintassi
ST_UNION(g1,g2)
Spiegazione
MariaDB starting with 5.3.3
ST_UNION() è stata introdotta in MariaDB 5.3.3
Restituisce una geometria che rappresenta l'unione delle geometrie g1
e g2
.
Esempi
SET @g1 = GEOMFROMTEXT('POINT (0 2)'); SET @g2 = GEOMFROMTEXT('POINT (2 0)'); SELECT ASTEXT(ST_UNION(@g1,@g2)); +---------------------------+ | ASTEXT(ST_UNION(@g1,@g2)) | +---------------------------+ | MULTIPOINT(2 0,0 2) | +---------------------------+
SET @g1 = GEOMFROMTEXT('POLYGON((0 0,0 3,3 3,3 0,0 0))'); SET @g2 = GEOMFROMTEXT('POLYGON((2 2,4 2,4 4,2 4,2 2))'); SELECT ASTEXT(ST_UNION(@g1,@g2)); +------------------------------------------------+ | ASTEXT(ST_UNION(@g1,@g2)) | +------------------------------------------------+ | POLYGON((0 0,0 3,2 3,2 4,4 4,4 2,3 2,3 0,0 0)) | +------------------------------------------------+
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.