STContains (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 1 se un'istanza geometry contiene completamente un'altra istanza geometry. In caso contrario, restituisce 0.
Sintassi
.STContains ( other_geometry )
Argomenti
other_geometry
Altra istanza geometry da confrontare con l'istanza sulla quale viene chiamato STContains()
.
Tipi restituiti
Tipo SQL Server restituito: bit
Tipo CLR restituito: SqlBoolean
Osservazioni:
STContains()
restituisce sempre Null se gli identificatori SRID delle istanze geometry non corrispondono.
Esempi
Nell'esempio seguente viene utilizzato STContains()
per verificare se per due istanze geometry
la prima contiene completamente la seconda.
DECLARE @g geometry;
DECLARE @h geometry;
SET @g = geometry::STGeomFromText('POLYGON((0 0, 2 0, 2 2, 0 2, 0 0))', 0);
SET @h = geometry::STGeomFromText('POINT(1 1)', 0);
SELECT @g.STContains(@h);
Vedi anche
Panoramica degli indici spaziali
Metodi OGC sulle istanze di geometria