Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
返回保证与 ST_Surface 值在空间中相交的 ST_Point 值。
如果 surface-expression 包含圆弧线串,则将这些圆弧线串内插到线串中。
surface-expression.ST_PointOnSurface()
ST_Point 如果表面是空集,则返回 NULL。否则返回保证与 ST_Surface 值在空间中相交的 ST_Point 值。
结果的空间参照系标识符与 surface-expression 的空间参照系相同。
SQL/MM (ISO/IEC 13249-3: 2006) 8.1.5
以下示例返回与多边形相交的点。
SELECT NEW ST_Polygon( 'Polygon(( 1 0, 0 10, 1 1, 2 10, 1 0 ))' ) .ST_PointOnSurface()