STDimension (geography データ型)
geography インスタンスの最大次元数を返します。
構文
.STDimension ( )
戻り値の型
SQL Server の戻り値の型 : int
CLR の戻り値の型 : SqlInt32
説明
geography インスタンスが空の場合、STDimension() は -1 を返します。
例
STDimension() を使用して、geography インスタンスを保持するテーブル変数を作成し、Point、LineString、および Polygon を挿入する例を次に示します。
DECLARE @temp table ([name] varchar(10), [geom] geography);
INSERT INTO @temp values ('Point', geography::STGeomFromText('POINT(-122.34900 47.65100)', 4326));
INSERT INTO @temp values ('LineString', geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326));
INSERT INTO @temp values ('Polygon', geography::STGeomFromText('POLYGON((-122.358 47.653, -122.348 47.649, -122.348 47.658, -122.358 47.658, -122.358 47.653))', 4326));
SELECT [name], [geom].STDimension() as [dim]
FROM @temp;
次に、各 geography インスタンスの次元を返す例を示します。
name |
dim |
---|---|
Point |
0 |
LineString |
1 |
Polygon |
2 |