Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 1.49 KB

File metadata and controls

61 lines (46 loc) · 1.49 KB
title Point (geometry Data Type)
description Point (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
Point
Point_TSQL
helpviewer_keywords
Point (geometry Data Type)
dev_langs
TSQL

Point (geometry Data Type)

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

Constructs a geometry instance representing a Point instance from its X and Y values and an SRID.

Syntax

  
Point ( X, Y, SRID )  

Arguments

X
Is a float expression representing the X-coordinate of the Point being generated.

Y
Is a float expression representing the Y-coordinate of the Point being generated.

SRID
Is an int expression representing the spatial reference ID (SRID) of the geometry instance you wish to return.

Return Types

[!INCLUDEssNoVersion] return type: geometry

CLR return type: SqlGeometry

Remarks

Examples

The following example uses Point() to create a geometry instance.

DECLARE @g geometry;   
SET @g = geometry::Point(1, 10, 0);  
SELECT @g.ToString();  

See Also

Extended Static Geometry Methods