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) 2006) 5.1.37
次の例は、結果 Point (1 2) を返します。
Point (1 2)
select ST_AsText(ST_Point(1.0, 2.0, 4326))