Click to Rate and Give Feedback
MSDN
MSDN Library
SQL Server
SQL Server 2008
Database Engine
Technical Reference
 STEquals (geography Data Type)
Community Content
In this section
Statistics Annotations (0)
Collapse All/Expand All Collapse All
SQL Server 2008 Books Online (October 2009)
STEquals (geography Data Type)

Returns 1 if a geography instance represents the same point set as another geography instance. Returns 0 if it does not.

.STEquals ( other_geography )
other_geography

Is another geography instance to compare against the instance on which STEquals() is invoked.

SQL Server return type: bit

CLR return type: SqlBoolean

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

The following example creates two geography instances with STGeomFromText() that are equal but not trivially equal, and uses STEquals() to test their equality. The instances are equal because LINESTRING and POINT are contained within the POLYGON.

DECLARE @g geography;
DECLARE @h geography;
SET @g = geography::STGeomFromText('GEOMETRYCOLLECTION(POLYGON((-122.368 47.658, -122.338 47.649, -122.338 47.658, -122.368 47.658, -122.368 47.658)), LINESTRING(-122.360 47.656, -122.343 47.656), POINT (-122.35 47.656))', 4326);
SET @h = geography::STGeomFromText('POLYGON((-122.368 47.658, -122.338 47.649, -122.338 47.658, -122.368 47.658, -122.368 47.658))', 4326);
SELECT @g.STEquals(@h);
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement | Site Feedback
Page view tracker