STDisjoint (tipo di dati geography)
Si applica a: SQL Server database SQL di Azure Istanza gestita di SQL di Azure database SQL in Microsoft Fabric
Restituisce 1 se un'istanza geography è disgiunta a livello spaziale da un'altra istanza geography. In caso contrario, restituisce 0.
Sintassi
.STDisjoint ( other_geography )
Argomenti
other_geography
Altra istanza geography da confrontare con l'istanza sulla quale viene chiamato STDisjoint().
Tipi restituiti
Tipo SQL Server restituito: bit
Tipo CLR restituito: SqlBoolean
Osservazioni:
Due istanze geography sono disgiunte se l'intersezione dei relativi set di punti è vuota.
Questo metodo restituisce sempre Null se gli identificatori SRID delle istanze geography non corrispondono.
Esempi
Nell'esempio seguente viene utilizzato STDisjoint()
per verificare se due istanze geography
sono disgiunte a livello spaziale.
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);