Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 1.58 KB

stgeometrytype-geometry-data-type.md

File metadata and controls

52 lines (39 loc) · 1.58 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs monikerRange
STGeometryType (geometry Data Type)
STGeometryType (geometry Data Type)
MladjoA
mlandzic
08/03/2017
sql
t-sql
reference
STGeometryType_TSQL
STGeometryType (geometry Data Type)
STGeometryType (geometry Data Type)
TSQL
=azuresqldb-current||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current

STGeometryType (geometry Data Type)

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

Returns the Open Geospatial Consortium (OGC) type name represented by a geometry 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, and MultiPolygon.

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((0 0, 3 0, 3 3, 0 3, 0 0))', 0);  
SELECT @g.STGeometryType();  

See Also

OGC Methods on Geometry Instances