Skip to content

Latest commit

 

History

History
62 lines (49 loc) · 2.28 KB

stisring-geometry-data-type.md

File metadata and controls

62 lines (49 loc) · 2.28 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic ms.custom f1_keywords helpviewer_keywords dev_langs monikerRange
STIsRing (geometry Data Type)
STIsRing (geometry Data Type)
MladjoA
mlandzic
08/03/2017
sql
t-sql
reference
ignite-2024
STIsRing_TSQL
STIsRing (geometry Data Type)
STIsRing (geometry Data Type)
TSQL
=azuresqldb-current || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric

STIsRing (geometry Data Type)

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

Returns 1 if a geometry instance fulfills the following requirements:

  • It is a LineString instance.
  • It is closed.
  • It is simple.
  • Returns 0 if the LineString instance does not meet the requirements.

For a geometry instance to be closed and simple, both STIsClosed() and STIsSimple() must return 1 when invoked on the instance. To determine the instance type of a geometry, use STGeometryType().

Syntax

  
.STIsRing ( )  

Return Types

[!INCLUDEssNoVersion] return type: bit

CLR return type: SqlBoolean

Remarks

This method returns null if the instance is not a LineString.

Examples

The following example creates a LineString instance and uses STIsRing() to test whether the instance is a ring.

DECLARE @g geometry;  
SET @g = geometry::STGeomFromText('LINESTRING(0 0, 2 2, 1 0, 0 0)', 0);  
SELECT @g.STIsRing();  

See Also

STIsClosed (geometry Data Type)
STGeometryType (geometry Data Type)
STIsSimple (geometry Data Type)
OGC Methods on Geometry Instances