Skip to content
Advertisement

How to get location from latitude and longitude in T-SQL?

I have a mapping table of locationId along with their center latitude and center longitude value like below-

I have another table where I am getting continuous location data with latitude and longitude for user like below –

I want to get the locationId of all users if their latitude and longitude values lies within 1000 meters of lat-long values corresponding to location id. How can I get it done in T-SQL?

Final table should like below –

Advertisement

Answer

You can use convert the latitude/longitude pairs to geography objects, and then use stdistance():

Note that it would be much more efficient to store this information as points to start with.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement