STStartPoint (tipo di dati geometry)
Restituisce il punto di inizio di un'istanza geometry.
Sintassi
.STStartPoint ( )
Tipi restituiti
SQL Server tipo restituito: geometry
Tipo CLR restituito: SqlGeometry
Tipo OGC (Open Geospatial Consortium): Point
Osservazioni
STStartPoint() equivale a STPointN (1).
Esempi
Nell'esempio seguente viene creata un'istanza LineString e viene utilizzato STStartPoint() per recuperare il punto di inizio dell'istanza.
DECLARE @g geometry;
SET @g = geometry::STGeomFromText('LINESTRING(0 0, 2 2, 1 0)', 0;
SELECT @g.STStartPoint().ToString();
Vedere anche
Riferimento
STPointN (tipo di dati geometry)