Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.61 KB

stgeometrytype-geography-data-type.md

File metadata and controls

52 lines (40 loc) · 1.61 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic ms.custom f1_keywords helpviewer_keywords dev_langs
STGeometryType (geography Data Type)
STGeometryType (geography Data Type)
MladjoA
mlandzic
03/14/2017
sql
t-sql
reference
ignite-2024
STGeometryType (geography Data Type)
STGeometryType_TSQL
STGeometryType method
TSQL

STGeometryType (geography Data Type)

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

Returns the Open Geospatial Consortium (OGC) type name represented by a geography instance.

Syntax

  
.STGeometryType ( )  

Return Types

[!INCLUDEssNoVersion] return type: nvarchar(4000)

CLR return type: SqlString

Remarks

The OGC type names that can be returned by STGeometryType() are Point, LineString, CircularString, CompoundCurve, Polygon, CurvePolygon, GeometryCollection, MultiPoint, MultiLineString, MultiPolygon, and FullGlobe.

Examples

The following example creates a Polygon instance and uses STGeometryType() to confirm that it is a polygon.

DECLARE @g geometry;  
SET @g = geometry::STGeomFromText('POLYGON((-122.358 47.653, -122.348 47.649, -122.348 47.658, -122.358 47.658, -122.358 47.653))', 4326);  
SELECT @g.STGeometryType();  

See Also

OGC Methods on Geography Instances