Skip to content

Latest commit

 

History

History
61 lines (47 loc) · 1.82 KB

File metadata and controls

61 lines (47 loc) · 1.82 KB
title STDisjoint (geometry Data Type)
description STDisjoint (geometry Data Type)
author MladjoA
ms.author mlandzic
ms.date 03/14/2017
ms.service sql
ms.subservice t-sql
ms.topic reference
ms.custom
ignite-2025
f1_keywords
STDisjoint_TSQL
STDisjoint (geometry Data Type)
helpviewer_keywords
STDisjoint (geometry Data Type)
dev_langs
TSQL
monikerRange =azuresqldb-current || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric-sqldb

STDisjoint (geometry Data Type)

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

Returns 1 if a geometry instance is spatially disjoint from another geometry instance. Returns 0 if it is not.

Syntax

  
.STDisjoint ( other_geometry )  

Arguments

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

Return Types

[!INCLUDEssNoVersion] return type: bit

CLR return type: SqlBoolean

Remarks

Two geometry instances are disjoint if the intersection of their point sets is empty.

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

Examples

The following example uses STDisjoint() to test two geometry instances for spatial disjoint.

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.STDisjoint(@h);  

See Also

OGC Methods on Geometry Instances