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

  Switch on low bandwidth view
Community Content
In this section
Statistics Annotations (0)
SQL Server 2008 Books Online (June 2009)
STIntersects (geometry Data Type)

Returns 1 if a geometry instance intersects another geometry instance. Returns 0 if it does not.

.STIntersects ( other_geometry )
other_geometry

Is another geometry instance to compare against the instance on which STIntersects() is invoked.

SQL Server return type: bit

CLR return type: SqlBoolean

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

The following example uses STIntersects() to determine if two geometry instances intersect each other.

DECLARE @g geometry;
DECLARE @h geometry;
SET @g = geometry::STGeomFromText('LINESTRING(0 2, 2 0, 4 2)', 0);
SET @h = geometry::STGeomFromText('POINT(1 1)', 0);
SELECT @g.STIntersects(@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
Page view tracker