STCrosses (geometry Data Type)

**APPLIES TO:** ![yes](media/yes.png)SQL Server (starting with 2012) ![yes](media/yes.png)Azure SQL Database ![no](media/no.png)Azure SQL Data Warehouse ![no](media/no.png)Parallel Data Warehouse

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

Syntax

  
.STCrosses ( other_geometry )  

Arguments

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

Return Types

SQL Server return type: bit

CLR return type: SqlBoolean

Remarks

Two geometry instances cross if both of the following conditions are true:

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

Examples

The following example uses STCrosses() to test two geometry instances to see if they cross.

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

See Also

OGC Methods on Geometry Instances