straal zoeken:
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 is de straal van de aarde in mijlen. Vervang deze waarde door straal in KM, of een andere eenheid, om resultaten op dezelfde eenheid te krijgen.centerLat en centerLon zijn het middelpunt van de zoekopdracht (yourinput), terwijl lat en lon velden in de tabel zijn.