ST_NumGeometries(gc) NumGeometries(gc)
Returns the number of geometries in the GeometryCollection gc
.
ST_NumGeometries()
and NumGeometries()
are synonyms.
SET @gc = 'GeometryCollection(Point(1 1),LineString(2 2, 3 3))'; SELECT NUMGEOMETRIES(GeomFromText(@gc)); +----------------------------------+ | NUMGEOMETRIES(GeomFromText(@gc)) | +----------------------------------+ | 2 | +----------------------------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/numgeometries/