ST_PointN(ls,N) PointN(ls,N)
Returns the N-th Point in the LineString value ls
. Points are numbered beginning with 1
.
ST_PointN()
and PointN()
are synonyms.
SET @ls = 'LineString(1 1,2 2,3 3)'; SELECT AsText(PointN(GeomFromText(@ls),2)); +-------------------------------------+ | AsText(PointN(GeomFromText(@ls),2)) | +-------------------------------------+ | POINT(2 2) | +-------------------------------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/pointn/