Files
doris/docs/documentation/cn/sql-reference/sql-functions/spatial-functions/st_linefromtext.md
ZHAO Chun 7cdaba66dc Add spatial func (#1213)
Support some spatial functions, such as ST_Contains.
2019-05-31 14:23:09 +08:00

582 B

ST_LineFromText,ST_LineStringFromText

Syntax

GEOMETRY ST_LineFromText(VARCHAR wkt)

Description

将一个WKT(Well Known Text)转化为一个Line形式的内存表现形式

Examples

mysql> SELECT ST_AsText(ST_LineFromText("LINESTRING (1 1, 2 2)"));
+---------------------------------------------------------+
| st_astext(st_geometryfromtext('LINESTRING (1 1, 2 2)')) |
+---------------------------------------------------------+
| LINESTRING (1 1, 2 2)                                   |
+---------------------------------------------------------+