STNumInteriorRing (tipo di dati geometry)
Si applica a: SQL Server database SQL di Azure Istanza gestita di SQL di Azure database SQL in Microsoft Fabric
Restituisce il numero di anelli interni in un'istanza Polygongeometry.
Sintassi
.STNumInteriorRing ( )
Tipi restituiti
Tipo SQL Server restituito: int
Tipo CLR restituito: SqlInt32
Osservazioni:
Questo metodo restituisce null se l'istanza geometry non è un poligono.
Esempi
Nell'esempio seguente viene creata un'istanza Polygon
e viene utilizzato STNumInteriorRing()
per trovare il numero di anelli interni dell'istanza.
DECLARE @g geometry;
SET @g = geometry::STGeomFromText('POLYGON((0 0, 3 0, 3 3, 0 3, 0 0),(2 2, 2 1, 1 1, 1 2, 2 2))', 0);
SELECT @g.STNumInteriorRing();