mysql 搜索之间的距离

发布于 2024-12-19 22:07:30 字数 103 浏览 3 评论 0原文

所以我有两个表格,其中一个包含所有带有长和纬度的邮政编码列表,另一个包含带有长和纬度的存储数据。

我需要知道的是如何找到与邮政编码 30 公里范围内的经度和纬度相匹配的所有商店

so I have two tabels where one has a list of all postcodes with long and lat and the other has store data with long and lat.

What I need to know is how do I find all the stores that match the long and lat from a postcode within 30km

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

狠疯拽 2024-12-26 22:07:30

使用 Haversine 公式 (MySQL实现)来计算它们之间的距离。返回距离小于或等于 30 的行。

Use the Haversine formula (MySQL implementation) to calculate the distance between them. Return rows which have a distance of less or equal to 30.

他是夢罘是命 2024-12-26 22:07:30

查看此http://jan.ucc.nau.edu/~cvm/latlon_formula.html 为公式,将公式放在 select 语句中并按距离排序

Review this http://jan.ucc.nau.edu/~cvm/latlon_formula.html for formula, and put the formula on select statement and order by the distance

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文