可以使用MySQL中的地理空间函数来查询给定经纬度附近的记录。为此,您可能会使用MySQL的
ST_Distance_Sphere函数或在计算两个点之间的直线距离时使用ST_Distance(仅适用于MySQL 5.7以及更新的版本)。他们算出来的是一个直线距离。
以下是一个示例SQL查询,用于查找给定经纬度坐标(:latitude, :longitude)附近的地理位置,距离不超过某个特定
距离(例如1000米):
SELECT *,
ST_Distance_Sphere(
point(:longitude, :latitude),
point(longitude, latitude)
) AS distance
FROM locations
WHERE
ST_Distance_Sphere(
point(:longitude, :latitude),
point(longitude, latitude)
) <= :maxDistance
ORDER BY distance ASC;
在这个查询中,locations是存储地理位置的表名,latitude和longitude是表中存储纬度和经度的列
名。:latitude,:longitude,和:maxDistance是前端传递的参数,分别表示用户的纬度、经度和查询的最大距
离。
在Spring Boot项目中,配合MyBatis使用可能如下:
mapper namespace="com.example.mapper.LocationMapper">
<select id="selectLocationsNearby" resultType="com.example.domain.Location">
SELECT *, ST_Distance_Sphere(
point(#{longitude}, #{latitude}),
point(longitude, latitude)
) AS distance
FROM locations
WHERE
ST_Distance_Sphere(
point(#{longitude}, #{latitude}),
point(longitude, latitude)
) <= #{maxDistance}
ORDER BY distance ASC
</select>
</mapper>
在多表连接时可以先用函数然后起别名
ST_Distance_Sphere(point(#{roughAnimalInfoDTO.longitude}, #{roughAnimalInfoDTO.latitude}), point(c.longitude,
c.latitude)) as distance