| title | STEndPoint (geography Data Type) | ||
|---|---|---|---|
| description | STEndPoint (geography Data Type) | ||
| author | MladjoA | ||
| ms.author | mlandzic | ||
| ms.date | 03/14/2017 | ||
| ms.service | sql | ||
| ms.subservice | t-sql | ||
| ms.topic | reference | ||
| ms.custom |
|
||
| f1_keywords |
|
||
| helpviewer_keywords |
|
||
| dev_langs |
|
[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance FabricSQLDB]
Returns the end point of a geography instance.
.STEndPoint ( )
[!INCLUDEssNoVersion] return type: geography
CLR return type: SqlGeography
Open Geospatial Consortium (OGC) type: Point
STEndPoint() is the equivalent of STPointN(x.STNumPoints``()).
This method returns null if called on an empty geography instance.
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();