加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

postgresql 坐标距离操作

发布时间:2020-12-13 16:48:32 所属栏目:百科 来源:网络整理
导读:查询规定范围内 SELECT A . ID, A . "name" FROM t_base_customer A WHERE earth_box ( ll_to_earth ( 36.702286 , 119.195057 ), 300.0 ) @ ll_to_earth ( A .latitude, A .longitude) ; 按距离排序 SELECT A . ID,A . "name" ,earth_distance ( ll_to_eart

查询规定范围内

SELECT
    A . ID,A ."name"
FROM
    t_base_customer A
WHERE
    earth_box (
        ll_to_earth (36.702286,119.195057),300.0
    ) @> ll_to_earth (A .latitude,A .longitude);

按距离排序

SELECT A . ID,A ."name",earth_distance ( ll_to_earth (36.702286,ll_to_earth (A .latitude,A .longitude) ) AS distance FROM t_base_customer A ORDER BY distance ASC;

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读