नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Applies to:
SQL Server
Azure SQL Database
Azure SQL Managed Instance
SQL database in Microsoft Fabric
The Y-coordinate property of a Point instance.
Syntax
.STY
Return Types
SQL Server 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 STY to retrieve the Y-coordinate of the instance.
DECLARE @g geometry;
SET @g = geometry::STGeomFromText('POINT(3 8)', 0);
SELECT @g.STY;
Related content
STX (geometry Data Type)
STSrid (geometry Data Type)
OGC Methods on Geometry Instances