ST_UNION()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
A description for this Function has not yet been added to this Documentation.
EXAMPLES
SET @ls1 = ST_GeomFromText('LineString(1 1, 2 2)');
SET @ls2 = ST_GeomFromText('LineString(1 5, 5 1)');
SELECT ST_AsText(ST_Union(@ls1, @ls2));
+--------------------------------------+
| ST_AsText(ST_Union(@ls1, @ls2)) |
+--------------------------------------+
| MULTILINESTRING((1 1,2 2),(5 1,1 5)) |
+--------------------------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.