CollectionAggregate (tipo di dati geography)
Si applica a: SQL Server database SQL di Azure Istanza gestita di SQL di Azure database SQL in Microsoft Fabric
Crea un'istanza GeometryCollection da un set di oggetti geography.
Sintassi
CollectionAggregate ( geography_operand )
Argomenti
geography_operand
Colonna della tabella di tipo geography che rappresenta un set di oggetti geography da elencare nell'istanza GeometryCollection.
Tipi restituiti
Tipo SQL Server restituito: geography
Eccezione
Genera un'eccezione FormatException
in presenza di valori di input non validi. Vedere STIsValid (tipo di dati geography)
Osservazioni:
Il metodo restituisce Null quando l'input è vuoto o dispone di SRID diversi. Vedere Identificatori SRID
Il metodo ignora gli input Null.
Nota
Il metodo restituisce Null se tutti i valori immessi sono Null.
Esempi
L'esempio seguente restituisce un'istanza GeometryCollection
che contiene un set di oggetti geography.
USE AdventureWorks2022
GO
SELECT geography::CollectionAggregate(SpatialLocation).ToString() AS SpatialLocation
FROM Person.Address
WHERE City LIKE ('Bothell')