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 Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s