STGeomCollFromWKB (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 un'istanza geometrycollection da una rappresentazione WKB (Well-Known Binary) OGC (Open Geospatial Consortium).
Sintassi
STGeomCollFromWKB ( 'WKB_geometrycollection' , SRID )
Argomenti
WKB_geometrycollection
Rappresentazione WKB dell'istanza geometrycollection da restituire. WKB_geometrycollection è un'espressione varbinary(max).
SRID
Espressione int che rappresenta l'identificatore SRID dell'istanza geometry da restituire.
Tipi restituiti
Tipo SQL Server restituito: geometry
Tipo CLR restituito: SqlGeometry
Osservazioni:
Il tipo OGC dell'istanza geometry restituito da STGeomCollFromWKB()
è impostato su GeomCollection, MultiPolygon, MultiLineString o MultiPoint, in base all'input WKB corrispondente.
Questo metodo genererà un'eccezione FormatException se l'input non è formattato in modo corretto.
Esempi
Nell'esempio seguente viene usato STGeomCollFromWKB()
per creare un'istanza geometry.
DECLARE @g geometry;
SET @g = geometry::STGeomCollFromWKB(0x0107000000020000000103000000010000000400000000000000000014400000000000001440000000000000244000000000000014400000000000002440000000000000244000000000000014400000000000001440010100000000000000000024400000000000002440, 0);
SELECT @g.STAsText();