STUnion (tipo di dati geometry)
Restituisce un oggetto che rappresenta l'unione di un'istanza geometry con un'altra istanza geometry.
Sintassi
.STUnion ( other_geometry )
Argomenti
- other_geometry
Altra istanza geometry per formare un'unione con l'istanza sulla quale STUnion() viene richiamato.
Tipi restituiti
Tipo SQL Server restituito: geometry
Tipo CLR restituito: SqlGeometry
Osservazioni
Questo metodo restituisce sempre Null se gli identificatori SRID delle istanze geometry non corrispondono.
Esempi
Nell'esempio seguente viene utilizzato STUnion() per calcolare l'unione di due istanze Polygon.
DECLARE @g geometry;
DECLARE @h geometry;
SET @g = geometry::STGeomFromText('POLYGON((0 0, 0 2, 2 2, 2 0, 0 0))', 0);
SET @h = geometry::STGeomFromText('POLYGON((1 1, 3 1, 3 3, 1 3, 1 1))', 0);
SELECT @g.STUnion(@h).ToString();