Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Returns a geometry MultiPolygon instance from an Open Geospatial Consortium (OGC) Well-Known Binary (WKB) representation.
Syntax
STMPolyFromWKB ( 'WKB_multipolygon' , SRID )
Arguments
WKB_multipolygon
Is the WKB representation of the geometry MultiPolygon instance you wish to return. WKB_multipolygon is a varbinary(max) expression.SRID
Is an int expression representing the spatial reference ID (SRID) of the geometry MultiPolygon instance you wish to return.
Return Types
SQL Server return type: geometry
CLR return type: SqlGeometry
OGC type: MultiPolygon
Examples
The following example uses STMPolyFromWKB() to create a geometry instance:
DECLARE @g geometry;
SET @g = geometry::STMPolyFromWKB(0x0106000000020000000103000000010000000400000000000000000014400000000000001440000000000000244000000000000014400000000000002440000000000000244000000000000014400000000000001440010300000001000000050000000000000000002440000000000000244000000000000059400000000000002440000000000000694000000000000069400000000000003E400000000000003E4000000000000024400000000000002440, 0);
SELECT @g.STAsText();