STEndpoint (type de données geography)
Retourne le point de terminaison d'une instance geography.
Syntaxe
.STEndPoint ( )
Types de retour
SQL Server : geography
Type de retour CLR : SqlGeography
Type Open Geospatial Consortium (OGC) : Point
Notes
STEndPoint() est l'équivalent de STPointN(x.STNumPoints()).
Cette méthode retourne Null si elle est appelée sur une instance geography vide.
Exemples
L'exemple suivant crée une instance LineString avec STGeomFromText() et utilise STEndpoint() pour extraire le point de terminaison du LineString.
DECLARE @g geography;
SET @g = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);
SELECT @g.STEndPoint().ToString();