Constructs a point from WKB.
NEW ST_Point(wkb[, srid])
wkb
LONG BINARY
A string containing the binary representation of an point. The input can be in any supported binary input format, including WKB or EWKB.
srid
INT
The SRID of the result. If not specified, the default is 0.
Constructs a point from a binary 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(0x010100000000000000000024400000000000003440)