Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
テキスト表現から複数面を構成します。
NEW ST_MultiSurface(text-representation[, srid])
text-representation
LONG VARCHAR
複数面のテキスト表現を含む文字列。入力には、Well Know Text (WKT) や 拡張 Well Know Text (EWKT) など、サポートされている任意のテキスト入力フォーマットを使用できます。
srid
INT
結果の SRID。指定しない場合、デフォルトは 0 です。
文字列表現から複数面を構成します。データベースサーバーでは、指定された文字列を検査して入力フォーマットを判断します。
SQL/MM (ISO/IEC 13249-3: 2006) 9.5.2
次の例では、MultiSurface (((-5 -5, 5 -5, 0 5, -5 -5), (-2 -2, -2 0, 2 0, 2 -2, -2 -2)), ((10 -5, 15 5, 5 5, 10 -5))) を返します。
SELECT NEW ST_MultiSurface('MultiSurface (((-5 -5, 5 -5, 0 5, -5 -5), (-2 -2, -2 0, 2 0, 2 -2, -2 -2)), ((10 -5, 15 5, 5 5, 10 -5)))')