Click to Rate and Give Feedback
MSDN
MSDN Library
SQL Server
SQL Server 2008
Database Engine
Technical Reference
 STUnion (geometry Data Type)
SQL Server 2008 Books Online (August 2008)
STUnion (geometry Data Type)

Returns an object representing the union of a geometry instance with another geometry instance.

.STUnion ( other_geometry )
other_geometry

Is another geometry instance to form a union with the instance on which STUnion() is being invoked.

SQL Server return type: geometry

CLR return type: SqlGeometry

This method always returns null if the spatial reference IDs (SRIDs) of the geometry instances do not match.

The following example uses STUnion() to compute the union of two Polygon instances.

DECLARE @g geometry;
DECLARE @h geometry;
SET @g = geometry::STGeomFromText('POLYGON((0 0, 0 2, 2 2, 2 0, 0 0))', 0);
SET @h = geometry::STGeomFromText('POLYGON((1 1, 3 1, 3 3, 1 3, 1 1))', 0);
SELECT @g.STUnion(@h).ToString();
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker