Skip to content

Latest commit

 

History

History
56 lines (42 loc) · 1.53 KB

stendpoint-geography-data-type.md

File metadata and controls

56 lines (42 loc) · 1.53 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic ms.custom f1_keywords helpviewer_keywords dev_langs
STEndPoint (geography Data Type)
STEndPoint (geography Data Type)
MladjoA
mlandzic
03/14/2017
sql
t-sql
reference
ignite-2024
STEndPoint (geography Data Type)
STEndPoint_TSQL
STEndPoint method
TSQL

STEndPoint (geography Data Type)

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance FabricSQLDB]

Returns the end point of a geography instance.

Syntax

  
.STEndPoint ( )  

Return Types

[!INCLUDEssNoVersion] return type: geography

CLR return type: SqlGeography

Open Geospatial Consortium (OGC) type: Point

Remarks

STEndPoint() is the equivalent of STPointN(x.STNumPoints``()).

This method returns null if called on an empty geography instance.

Examples

The following example creates a LineString instance with STGeomFromText() and uses STEndPoint() to retrieve the end point of the LineString.

DECLARE @g geography;  
SET @g = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);  
SELECT @g.STEndPoint().ToString();  

See Also

OGC Methods on Geography Instances