ST_GeomFromWKB
Syntax
ST_GeomFromWKB(wkb[,srid]) ST_GeometryFromWKB(wkb[,srid]) GeomFromWKB(wkb[,srid]) GeometryFromWKB(wkb[,srid])
Description
Constructs a geometry value of any type using its WKB representation and SRID.
ST_GeomFromWKB()
, ST_GeometryFromWKB()
, GeomFromWKB()
and GeometryFromWKB()
are synonyms.
Examples
SET @g = ST_AsBinary(ST_LineFromText('LINESTRING(0 4, 4 6)')); SELECT ST_AsText(ST_GeomFromWKB(@g)); +-------------------------------+ | ST_AsText(ST_GeomFromWKB(@g)) | +-------------------------------+ | LINESTRING(0 4,4 6) | +-------------------------------+
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.