ST_LineFromText

注注:

仅用于 Oracle 的 ST_Geometry;对于 PostgreSQL 的空间类型,请使用 ST_LineString

定义

ST_LineFromText 以 ST_LineString 类型的熟知文本表示和空间参考 ID 作为输入,并返回 ST_LineString 类型的对象。

语法

sde.st_linefromtext (wkt clob, srid integer)

返回类型

ST_LineString

示例

创建一个包含单个 ln1 ST_LineString 列的 linestring_test 表。

CREATE TABLE linestring_test (ln1 sde.st_geometry);

此 INSERT 语句使用 ST_LineFromText 函数将 ST_LineString 插入到 ln1 列中。

INSERT INTO LINESTRING_TEST VALUES (
sde.st_linefromtext ('linestring (10.01 20.03, 35.93 19.04)', 0)
);
9/15/2013