STStartPoint (tipo de dados geography)
Retornar o ponto inicial de uma instância de geography.
Sintaxe
.STStartPoint ( )
Tipos de retorno
Tipo de retorno do SQL Server: geographygeography
Tipo de retorno CLR: SqlGeographySqlGeography
Tipo OGC (Open Geospatial Consortium): PointPoint
Exemplos
O exemplo a seguir cria uma instância de LineString e usa STStartPoint() para recuperar o ponto inicial da instância.
DECLARE @g geography;
SET @g = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);
SELECT @g.STStartPoint().ToString();