Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 1.06 KB

File metadata and controls

52 lines (39 loc) · 1.06 KB
title Null (geometry Data Type)
description Null (geometry Data Type)
author MladjoA
ms.author mlandzic
ms.date 08/03/2017
ms.service sql
ms.subservice t-sql
ms.topic reference
ms.custom
ignite-2024
f1_keywords
Null (geometry Data Type)
helpviewer_keywords
Null (geometry Data Type)
dev_langs
TSQL

Null (geometry Data Type)

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance FabricSQLDB]

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

Syntax

  
Null  

Arguments

Return Types

[!INCLUDEssNoVersion] 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