STIsEmpty (geography-Datentyp)
Gibt 1 zurück, wenn eine geography-Instanz leer ist. Gibt 0 zurück, wenn eine geography-Instanz nicht leer ist.
Syntax
.STIsEmpty ( )
Rückgabetypen
SQL Server Rückgabetyp: bit
CLR-Rückgabetyp: SqlBoolean
Beispiele
Im folgenden Beispiel wird eine leere geography-Instanz erstellt und STIsEmpty() verwendet, um zu prüfen, ob die Instanz leer ist.
DECLARE @g geography;
SET @g = geography::STGeomFromText('POLYGON EMPTY', 4326);
SELECT @g.STIsEmpty();