MULTIPOINT()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
Constructs a WKB MultiPoint value using WKB Point arguments. If any argument is not a WKB Point, the return value is NULL.
EXAMPLES
CREATE TABLE multipt (c1 MULTIPOINT);
INSERT INTO multipt VALUES (MultiPoint(Point(1,1), Point(1,2), Point(2,2)));
SELECT ST_AsText(c1) FROM multipt;
+-------------------------+
| ST_AsText(c1) |
+-------------------------+
| MULTIPOINT(1 1,1 2,2 2) |
+-------------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.