Skip to content

Latest commit

 

History

History
64 lines (47 loc) · 2.07 KB

stoverlaps-geometry-data-type.md

File metadata and controls

64 lines (47 loc) · 2.07 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs monikerRange
STOverlaps (geometry Data Type)
STOverlaps (geometry Data Type)
MladjoA
mlandzic
08/03/2017
sql
t-sql
reference
STOverlaps (geometry Data Type)
STOverlaps_TSQL
STOverlaps (geometry Data Type)
TSQL
=azuresqldb-current||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current

STOverlaps (geometry Data Type)

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance]

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

Syntax

  
.STOverlaps ( other_geometry )  

[!INCLUDEsql-server-tsql-previous-offline-documentation]

Arguments

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

Return Types

[!INCLUDEssNoVersion] return type: bit

CLR return type: SqlBoolean

Remarks

Two geometry instances overlap if the region representing their intersection has the same dimension as the instances do and the region does not equal either instance.

STOverlaps() always returns 0 if the points where the geometry instances intersect are not the same dimension.

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

Examples

The following example uses STOverlaps() to test two geometry instances for overlap.

DECLARE @g geometry;  
DECLARE @h geometry;  
SET @g = geometry::STGeomFromText('POLYGON((0 0, 2 0, 2 2, 0 2, 0 0))', 0);  
SET @h = geometry::STGeomFromText('POLYGON((1 1, 3 1, 3 3, 1 3, 1 1))', 0);  
SELECT @g.STOverlaps(@h);  

See Also

OGC Methods on Geometry Instances