Constructs a multi point from WKB.
NEW ST_MultiPoint(wkb[, srid])
wkb
LONG BINARY
A string containing the binary representation of an multi 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 multi 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) 9.2.2
The following returns MultiPoint ((10 10), (12 12), (14 10))
SELECT NEW ST_MultiPoint(0x01040000000300000001010000000000000000002440000000000000244001010000000000000000002840000000000000284001010000000000000000002c400000000000002440)