Loading...
Constructs a Point value using its WKB representation and an optional SRID.
ST_PointFromWKB(wkb[,srid]) PointFromWKB(wkb[,srid])
Constructs a POINT value using its WKB representation and SRID.
ST_PointFromWKB() and PointFromWKB() are synonyms.
ST_PointFromWKB()
PointFromWKB()
This page is licensed: GPLv2, originally from
SET @g = ST_AsBinary(ST_PointFromText('POINT(0 4)')); SELECT ST_AsText(ST_PointFromWKB(@g)) AS p; +------------+ | p | +------------+ | POINT(0 4) | +------------+