Constructs a 2D point from X,Y coordinates.
NEW ST_Point(x,y[, srid])
x
DOUBLE
The X coordinate value.
y
The Y coordinate value.
srid
INT
The SRID of the result. If not specified, the default is 0.
SQL/MM (ISO/IEC 13249-3: 2006) 6.1.2
The following returns Point (10 20).
SELECT NEW ST_Point(10.0,20.0,0)