Skip to content

Latest commit

 

History

History
57 lines (44 loc) · 1.54 KB

File metadata and controls

57 lines (44 loc) · 1.54 KB
title STX (geometry Data Type)
description STX (geometry Data Type)
author MladjoA
ms.author mlandzic
ms.date 06/23/2020
ms.service sql
ms.subservice t-sql
ms.topic reference
ms.custom
ignite-2025
f1_keywords
STX (geometry Data Type)
STX_TSQL
helpviewer_keywords
STX (geometry Data Type)
dev_langs
TSQL
monikerRange =azuresqldb-current || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric-sqldb

STX (geometry Data Type)

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

The X-coordinate property of a Point instance.

Syntax

  
.STX  

Return Types

[!INCLUDEssNoVersion] type: float

CLR type: SqlDouble

Remarks

The value of this property will be null if the geometry instance is not a point.

This property is read-only.

Examples

The following example creates a Point instance and uses STX to retrieve the X-coordinate of the instance.

DECLARE @g geometry;  
SET @g = geometry::STGeomFromText('POINT(3 8)', 0);  
SELECT @g.STX;  

See Also

STY (geometry Data Type)
STSrid (geometry Data Type)
OGC Methods on Geometry Instances