STEndpoint (geography-Datentyp)
Gibt den Endpunkt einer geography-Instanz zurück.
Syntax
.STEndPoint ( )
Rückgabetypen
SQL Server Rückgabetyp: geography
CLR-Rückgabetyp: SqlGeography
Open Geospatial Consortium (OGC)-Typ: Point
Hinweise
STEndPoint() entspricht STPointN(x.STNumPoints()).
Diese Methode gibt NULL zurück, wenn Sie für eine leere geography-Instanz aufgerufen wird.
Beispiele
Im folgenden Beispiel wird mit STGeomFromText() eine LineString-Instanz erstellt und STEndpoint() verwendet, um den Endpunkt in der Beschreibung der LineString-Instanz abzurufen.
DECLARE @g geography;
SET @g = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);
SELECT @g.STEndPoint().ToString();