查询规定范围内
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;
原文链接:https://www.f2er.com/postgresql/193582.html