I'm trying to make a query that select users located on an area. I've this table:
Users (user_id, username, user_latitude, user_longitude)
I have an area defined by 2 points:
- North West (lat, lng)
- South East (lat, lng)
How to get the users with a geoposition contained on the area?
Thank you :)