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