STStartPoint (tipo de datos geography)
Se aplica a: SQL Server Azure SQL Database Azure SQL Managed Instance Base de datos de Azure SQL de Microsoft Fabric
Devuelve el punto inicial de una instancia de geography.
Sintaxis
.STStartPoint ( )
Tipos de valor devuelto
Tipo de valor devuelto de SQL Server: geography
Tipo de valor devuelto de CLR: SqlGeography
Tipo Open Geospatial Consortium (OGC): Point
Comentarios
STStartPoint() es el equivalente de STPointN(1)
.
Ejemplos
En el ejemplo siguiente se crea una instancia de LineString
y se utiliza STStartPoint()
para recuperar el punto de inicio de la instancia.
DECLARE @g geography;
SET @g = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);
SELECT @g.STStartPoint().ToString();