A Point consists of X and Y coordinates,
which may be obtained using the following functions:
Returns the X-coordinate value for the
Pointobjectpas a double-precision number.mysql> SELECT ST_X(Point(56.7, 53.34)); +--------------------------+ | ST_X(Point(56.7, 53.34)) | +--------------------------+ | 56.7 | +--------------------------+Returns the Y-coordinate value for the
Pointobjectpas a double-precision number.mysql> SELECT ST_Y(Point(56.7, 53.34)); +--------------------------+ | ST_Y(Point(56.7, 53.34)) | +--------------------------+ | 53.34 | +--------------------------+ST_X()andX()are synonyms. For more information, see the description ofST_X().X()is deprecated; expect it to be removed in a future MySQL release. UseST_X()instead.ST_Y()andY()are synonyms. For more information, see the description ofST_Y().Y()is deprecated; expect it to be removed in a future MySQL release. UseST_Y()instead.