त्रिज्या खोज:
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 मीलों में पृथ्वी की त्रिज्या है। उसी इकाई पर परिणाम प्राप्त करने के लिए इस मान को KM या किसी इकाई में त्रिज्या से बदलें।centerLat और सेंटरलोन खोज के केंद्र हैं (yourinput), जबकि lat और lon तालिका में फ़ील्ड हैं।