Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
(X, Y, Z) 座標から 3D ポイントを構成します。
NEW ST_Point(x,y,z[, srid])
x
DOUBLE
X 座標値。
y
Y 座標値。
z
Z 座標値。
srid
INT
結果の SRID。指定しない場合、デフォルトは 0 です。
SQL/MM (ISO/IEC 13249-3: 2006) 6.1.2
次の例では、Point Z (10 20 100) を返します。
SELECT NEW ST_Point(10.0,20.0,100.0,0)