STEndpoint (coğrafi konum veri türü)
Bitiş noktası verir bir geographyörneği.
Sözdizimi
.STEndPoint ( )
Dönüş Türleri
SQL Server dönüş türü: geography
clr döndürme türü:SqlGeography
Geospatial Consortium (ogc) türü açın:Point
Açıklamalar
**STEndPoint()**eşdeğer STPointN(x.STNumPoints()).
Bu yöntem null boş üzerinde adlandırılan döner geographyörneği.
Örnekler
Aşağıdaki örnek bir LineStringörneği ile STGeomFromText()ve STEndpoint()bitiş noktası almak için LineString.
DECLARE @g geography;
SET @g = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);
SELECT @g.STEndPoint().ToString();
DECLARE @g geography;
SET @g = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);
SELECT @g.STEndPoint().ToString();