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)