ST_Y(p) Y(p)
Returns the Y-coordinate value for the point p as a double-precision number.
ST_Y()
and Y()
are synonyms.
SET @pt = 'Point(56.7 53.34)'; SELECT Y(GeomFromText(@pt)); +----------------------+ | Y(GeomFromText(@pt)) | +----------------------+ | 53.34 | +----------------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/st_y/