ST_PointFromWKB
Constructs a Point value using its WKB representation and an optional SRID.
Syntax
ST_PointFromWKB(wkb[,srid])
PointFromWKB(wkb[,srid])Description
Examples
SET @g = ST_AsBinary(ST_PointFromText('POINT(0 4)'));
SELECT ST_AsText(ST_PointFromWKB(@g)) AS p;
+------------+
| p |
+------------+
| POINT(0 4) |
+------------+Last updated
Was this helpful?

