ST_DISTANCE() was introduced in MariaDB 5.3.3.
ST_DISTANCE(g1,g2)
Returns the distance between two geometries, or null if not given valid inputs.
SELECT ST_Distance(POINT(1,2),POINT(2,2)); +------------------------------------+ | ST_Distance(POINT(1,2),POINT(2,2)) | +------------------------------------+ | 1 | +------------------------------------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/st_distance/