Udostępnij za pośrednictwem


STBoundary (geometry Data Type)

Zwraca krawędzią geometry wystąpienie.

.STBoundary ()

Zwracane typy

SQL Server typ zwrotny: geometry

Zwracany typ CLR: SqlGeometry

Przykłady

The following example uses STBoundary() to create a LineStringgeometry instance.Następnie zwraca granicy LineString.

DECLARE @g geometry;
SET @g = geometry::STGeomFromText('LINESTRING(0 0, 2 2, 0 2, 2 0)', 0);
SELECT @g.STBoundary().ToString();

See Also

Other Resources