Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
x 座標と y 座標に基づくポイントを作成します。
ST_Point(x,y,SRID)
x
DOUBLE
ポイントの作成に使用する x 座標
y
ポイントの作成に使用する y 座標
SRID
ポイントに関連付けられる SRID 値
ST_Point 入力文字列から作成された ST_Geometry 値を返します。
次の文は、2163 参照系にポイント (10.0,20.0) を作成します。
SELECT ST_Point(10.0,20.0,2163)