ST_Multi — 将几何图形作为 MULTI* 几何图形返回。
geometry ST_Multi(
geometry geom)
;
将几何图形作为 MULTI* 几何图形集合返回。如果几何图形已经是集合,则返回时不作更改。
SELECT ST_AsText(ST_Multi('POLYGON ((10 30, 30 30, 30 10, 10 10, 10 30))')); st_astext ------------------------------------------------- MULTIPOLYGON(((10 30,30 30,30 10,10 10,10 30)))