Null (geometry Data Type)

**APPLIES TO:** ![yes](media/yes.png)SQL Server (starting with 2008) ![yes](media/yes.png)Azure SQL Database ![no](media/no.png)Azure SQL Data Warehouse ![no](media/no.png)Parallel Data Warehouse

A read-only property providing a null instance of the geometry type.

Syntax

  
Null  

Arguments

Return Types

SQL Server type: geometry

CLR type: SqlGeometry

Remarks

Examples

The following example retrieves a null geometry instance.

DECLARE @g geometry;   
SET @g = geometry::[Null];  
SELECT @g  

See Also

Extended Static Geometry Methods