Aracılığıyla paylaş


STMPolyFromWKB (veri türü geometri)

Returns a geometryMultiPolygon instance from an Open Geospatial Consortium (OGC) Well-Known Binary (WKB) representation.

STMPolyFromWKB ( 'WKB_multipolygon' , SRID )

Bağımsız değişkenler

  • WKB_multipolygon
    Is the WKB representation of the geometryMultiPolygon 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 geometryMultiPolygon instance you wish to return.

Dönüş Türleri

SQL Server döndürme türü: geometry

CLR dönüş türü: SqlGeometry

OGC türü: MultiPolygon

Örnekler

Aşağıdaki örnek kullanır. STMPolyFromWKB() Oluşturulacak bir geometry Örnek:

DECLARE @g geometry; 
SET @g = geometry::STMPolyFromWKB(0x0106000000020000000103000000010000000400000000000000000014400000000000001440000000000000244000000000000014400000000000002440000000000000244000000000000014400000000000001440010300000001000000050000000000000000002440000000000000244000000000000059400000000000002440000000000000694000000000000069400000000000003E400000000000003E4000000000000024400000000000002440, 0);
SELECT @g.STAsText();

See Also

Other Resources