Constructs a point from a text representation.
NEW ST_Point(text-representation[, srid])
text-representation
LONG VARCHAR
A string containing the text representation of a point. The input can be in any supported text input format, including Well Known Text (WKT) or Extended Well Known Text (EWKT).
srid
INT
The SRID of the result. If not specified, the default is 0.
Constructs a point from a character string representation. The database server determines the input format by inspecting the provided string.
SQL/MM (ISO/IEC 13249-3: 2006) 6.1.2
The following returns Point (10 20).
SELECT NEW ST_Point('Point (10 20)')