Constructs a geometry instance representing a Point instance from its X and Y values and an SRID.
Point ( X, Y, SRID )
Is a float expression representing the X-coordinate of the Point being generated.
Is a float expression representing the Y-coordinate of the Point being generated.
Is an int expression representing the spatial reference ID (SRID) of the geometry instance you wish to return.
SQL Server return type: geometry
CLR return type: SqlGeometry
The following example uses Point() to create a geometry instance.
Point()
geometry
DECLARE @g geometry; SET @g = geometry::Point(1, 10, 0); SELECT @g.ToString();