radiussøgning:
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 er Jordens radius i Miles. Erstat denne værdi med radius i KM eller en hvilken som helst enhed for at få resultater på den samme enhed.centerLat og centerLon er midten af søgningen (dit input), mens lat og lon er felter i tabellen.