wyszukiwanie promienia:
select *,
acos(cos(centerLat * (PI()/180)) *
cos(centerLon * (PI()/180)) *
cos(lat * (PI()/180)) *
cos(lon * (PI()/180))
+
cos(centerLat * (PI()/180)) *
sin(centerLon * (PI()/180)) *
cos(lat * (PI()/180)) *
sin(lon * (PI()/180))
+
sin(centerLat * (PI()/180)) *
sin(lat * (PI()/180))
) * 3959 as Dist
from TABLE_NAME
having Dist < radius
order by Dist
3959 to promień Ziemi w milach. Zastąp tę wartość promieniem w KM lub dowolnej jednostce, aby uzyskać wyniki w tej samej jednostce.centerLat i centerLon są centrum wyszukiwania (wprowadzanie), podczas gdy lat i lon są polami w tabeli.