ST_X
Syntax
ST_X(p) X(p)
Description
Returns the X-coordinate value for the point p
as a double-precision number.
ST_X()
and X()
are synonyms.
Examples
SET @pt = 'Point(56.7 53.34)'; SELECT X(GeomFromText(@pt)); +----------------------+ | X(GeomFromText(@pt)) | +----------------------+ | 56.7 | +----------------------+
Comments
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.
ST_X(point) returns a scalar number, not a Geometry type. Do not try to cast it from a WKB to Text or it will return NULL without errors or warnings!
The same is probably true for ST_Y(), ST_Z(), and ST_M().
Example: