Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
ST_AsText 函数返回表示几何的二进制字符串。输出格式是由 OGC SFS 1.1 定义的 WKT。
.ST_AsText(geometry-expression)
VARCHAR 返回 geometry-expression 的 WKT 表示。
SQL/MM (ISO/IEC 13249-3: 2006) 5.1.37
以下示例返回结果 Point (1 2)。
Point (1 2)
select ST_AsText(ST_Point(1.0, 2.0, 4326))