Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
根据 X,Y 坐标构造 2D 点。
NEW ST_Point(x,y[, srid])
x
DOUBLE
X 坐标值。
y
Y 坐标值。
srid
INT
结果的 SRID。如果未指定,缺省值是 0。
SQL/MM (ISO/IEC 13249-3: 2006) 6.1.2
以下示例返回 Point (10 20)。
SELECT NEW ST_Point(10.0,20.0,0)