select *, GetDistanceBetweenGeoLocations(n, e, 55.75272901, 37.60548887) as d from points;
+-------+-------------+-------------+---------------------+
| point | n | e | d |
+-------+-------------+-------------+---------------------+
| 1 | 55.75272901 | 37.60548887 | 0 |
| 2 | 55.75473895 | 37.61351058 | 0.5495193600654602 |
| 3 | 55.75271691 | 37.60612187 | 0.03964652866125107 |
| 4 | 55.75280693 | 37.61898127 | 0.8443683385848999 |
+-------+-------------+-------------+---------------------+
4 rows in set (0.01 sec)
$ select *, GetDistanceBetweenGeoLocations(n, 55.75272901, e, 37.60548887) as d from points;
+-------+-------------+-------------+-------------------+
| point | n | e | d |
+-------+-------------+-------------+-------------------+
| 1 | 55.75272901 | 37.60548887 | 2430.95703125 |
| 2 | 55.75473895 | 37.61351058 | 2430.337890625 |
| 3 | 55.75271691 | 37.60612187 | 2430.89404296875 |
| 4 | 55.75280693 | 37.61898127 | 2429.639892578125 |
+-------+-------------+-------------+-------------------+
4 rows in set (0.00 sec)