STDifference(geography 데이터 형식)
다른 geography 인스턴스 내에 없는 특정 geography 인스턴스의 점을 나타내는 개체를 반환합니다.
구문
.STDifference ( other_geography )
인수
- other_geography
**STDifference()**를 호출할 인스턴스에서 제거할 점을 나타내는 다른 geography 인스턴스입니다.
반환 형식
SQL Server 반환 형식: geography
CLR 반환 형식: SqlGeography
주의
이 메서드는 geography 인스턴스의 SRID(Spatial Reference ID)가 일치하지 않으면 항상 Null을 반환합니다.
예
다음 예에서는 STDifference()를 사용하여 두 geography 인스턴스 간의 차이를 계산합니다.
DECLARE @g geography;
DECLARE @h geography;
SET @g = geography::STGeomFromText('POLYGON((-122.358 47.653, -122.348 47.649, -122.348 47.658, -122.358 47.658, -122.358 47.653))', 4326);
SET @h = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);
SELECT @g.STDifference(@h).ToString();