how to create a geography geometry column from lat and long fields at sql server

 

Use below function

geography::STPointFromText(‘POINT(‘ + CAST(longitude AS VARCHAR(20)) + ‘ ‘ + CAST(latitude AS VARCHAR(20)) + ‘)’, 4326) as geo_location

 

Leave a comment