Skip to content

Latest commit

 

History

History
60 lines (46 loc) · 1.74 KB

stdisjoint-geography-data-type.md

File metadata and controls

60 lines (46 loc) · 1.74 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic ms.custom f1_keywords helpviewer_keywords dev_langs
STDisjoint (geography Data Type)
STDisjoint (geography Data Type)
MladjoA
mlandzic
03/14/2017
sql
t-sql
reference
ignite-2024
STDisjoint (geography Data Type)
STDisjoint_TSQL
STDisjoint
TSQL

STDisjoint (geography Data Type)

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

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

Syntax

  
.STDisjoint ( other_geography )  

Arguments

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

Return Types

[!INCLUDEssNoVersion] return type: bit

CLR return type: SqlBoolean

Remarks

Two geography 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 geography instances do not match.

Examples

The following example uses STDisjoint() to test two geography instances to see if they are spatially disjoint.

DECLARE @g geography;  
DECLARE @h geography;  
SET @g = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);  
SET @h = geography::STGeomFromText('POINT(-122.34900 47.65100)', 4326);  
SELECT @g.STDisjoint(@h);  

See Also

OGC Methods on Geography Instances