OK, so, here's the problem. I have three columns in MySQL table:
location_lat
location_lng
radius
I need to make a query that when user selects the point on map I get latitude,longitude values and to find all DB entries that contains this dot.
To illustrate it, I've made a mockup:
So, given the coordinates of the black marker I need to find only red circles and not the green ones.
Is it doable via MySQL?
I know how to make it in PHP, but that could be more resource intensive.