AsText
Sintassi
AsText(g), AsWKT(g)
Spiegazione
Converte un valore dal formato geometrico interno a una rappresentazione WKT e restituisce la stringa risultante.
Esempi
MariaDB [(none)]> SET @g = 'LineString(1 1,2 2,3 3)'; MariaDB [(none)]> SELECT AsText(GeomFromText(@g)); +--------------------------+ | AsText(GeomFromText(@g)) | +--------------------------+ | LINESTRING(1 1,2 2,3 3) | +--------------------------+ 1 row in set (0.00 sec)
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.