Skip to content

Latest commit

 

History

History
54 lines (41 loc) · 1.44 KB

File metadata and controls

54 lines (41 loc) · 1.44 KB
title STStartPoint (geography Data Type)
description STStartPoint (geography Data Type)
author MladjoA
ms.author mlandzic
ms.date 03/14/2017
ms.service sql
ms.subservice t-sql
ms.topic reference
ms.custom
ignite-2024
f1_keywords
STStartPoint_TSQL
STStartPoint (geography Data Type)
helpviewer_keywords
STStartPoint method
dev_langs
TSQL

STStartPoint (geography Data Type)

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance FabricSQLDB]

Returns the start point of a geography instance.

Syntax

  
.STStartPoint ( )  

Return Types

[!INCLUDEssNoVersion] return type: geography

CLR return type: SqlGeography

Open Geospatial Consortium (OGC) type: Point

Remarks

STStartPoint() is the equivalent of STPointN(1).

Examples

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();  

See Also

OGC Methods on Geography Instances