STStartPoint (type de données geography)
Retourne le point de départ d'une instance geography.
Syntaxe
.STStartPoint ( )
Types de retour
SQL Server : geography
Type de retour CLR : SqlGeography
Type Open Geospatial Consortium (OGC) : Point
Notes
STStartPoint() est l'équivalent de STPointN(1).
Exemples
L'exemple suivant crée une instance LineString et utilise STStartPoint() pour extraire le point de départ de l'instance.
DECLARE @g geography;
SET @g = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);
SELECT @g.STStartPoint().ToString();