I'm using spatial query to find some places in a radius for the given lat. and long.
select *, (3959 * ACOS(COS(radians(1.0)) * COS(radians(`lat`)) * COS(radians(`lng`) - radians(1.0)) + sin(radians(1.0)) * sin( radians(`lat`)))) AS distance
FROM table_name
HAVING distance <= 5
ORDER BY distance
This is not returning any values. Is there any problem with the query?
TIA.

