The Y-coordinate property of a Point instance.
.STY
SQL Server type: float
CLR type: SqlDouble
The value of this property will be null if the geometry instance is a point. This property is read-only.
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;