MySQL 自定义函数

自定义函数获取两点之间距离, Symfony 定义GLength 的DQL

1
2
3
4
#语法
GLength(GeomFromText(CONCAT('LineString(', in_from_x, ' ', in_from_y, ',', in_to_x, ' ', in_to_y, ')'))) / 0.0000092592666666667
#样例
GLength(GeomFromText(CONCAT('LineString(25.44433087228 119.01171736304,', user_latitude, ' ', user_longitude, ')'))) / 0.0000092592666666667
0%