Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
指定されたジオメトリを表すバイナリ文字列を返します。出力フォーマットは、OGC SFS 1.1 で定義されている WKT です。
ST_AsText(geometry-expression)
VARCHAR geometry-expression の WKT 表現を返します。
次の文は、結果 Point (1 2) を返します。
Point (1 2)
SELECT ST_AsText(ST_Point(1.0, 2.0, 4326))