Name

ST_Multi — Gibt die Geometrie als MULTI* Geometrie zurück.

Synopsis

geometry ST_Multi(geometry geom);

Beschreibung

Returns the geometry as a MULTI* geometry collection. If the geometry is already a collection, it is returned unchanged.

Beispiele

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)))

Siehe auch

ST_AsText