Lets say i have a Table of rows that contain coordinates. what would be the best way to pull only the rows of coordinates which are in the radius of a another coordinate?
To simplify my question, i'm giving the following example:
Table like:
Columns: Latitude, Longitude.
Row1: 23.44444 24.55555
Row2: 32.44444 28.22222
Row3: 35.11111 32.12345
in an sql statement, how do i get the rows of coordinates that are in the radius of Row3 for example.
Thanks in advance.