STIsEmpty (geography データ型)
適用対象: SQL Server
Azure SQL Database
Azure SQL Managed Instance
Microsoft Fabric SQL Database
geography インスタンスが空の場合 1 を返します。 geography インスタンスが空ではない場合 0 を返します。
構文
.STIsEmpty ( )
戻り値の型
SQL Server 戻り値の型: bit
CLR の戻り値の型: SqlBoolean
例
空の geography
インスタンスを作成し、STIsEmpty()
を使用して、このインスタンスが空であることを確認する例を次に示します。
DECLARE @g geography;
SET @g = geography::STGeomFromText('POLYGON EMPTY', 4326);
SELECT @g.STIsEmpty();