title | description | author | ms.author | ms.date | ms.service | ms.subservice | ms.topic | ms.custom | f1_keywords | helpviewer_keywords | dev_langs | |||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
STStartPoint (geography Data Type) |
STStartPoint (geography Data Type) |
MladjoA |
mlandzic |
03/14/2017 |
sql |
t-sql |
reference |
|
|
|
|
[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance FabricSQLDB]
Returns the start point of a geography instance.
.STStartPoint ( )
[!INCLUDEssNoVersion] return type: geography
CLR return type: SqlGeography
Open Geospatial Consortium (OGC) type: Point
STStartPoint() is the equivalent of STPointN(1)
.
The following example creates a LineString
instance and uses STStartPoint()
to retrieve the start point of the instance.
DECLARE @g geography;
SET @g = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);
SELECT @g.STStartPoint().ToString();