Null (geometry Data Type)
A read-only property providing a null instance of the geometry type.
Syntax
Null
Return Types
SQL Server type: geometry
CLR type: SqlGeometry
Examples
The following example retrieves a null geometry instance.
DECLARE @g geometry;
SET @g = geometry::[Null];
SELECT @g