ST_LENGTH()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
Returns as a double-precision number the length of the LineString value.
EXAMPLES
SET @var = ST_GeomFromText('LineString(1 2,2 3,3 4)');
SELECT ST_Length(@var);
+--------------------+
| ST_Length(@var) |
+--------------------+
| 2.8284271247461903 |
+--------------------+
SET @var = ST_GeomFromText('MultiLineString((1 2,2 3,3 4),(4 5,5 6),(6 7,7 8,8 9))');
SELECT ST_Length(@var);
+--------------------+
| ST_Length(@var) |
+--------------------+
| 7.0710678118654755 |
+--------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.