Eu usei ST_DUMP para converter uma tabela de geometrias de multipolígonos no PostgreSQL em uma nova tabela com geometrias de polígonos e outras colunas de dados.
CREATE TABLE poly AS --poly will be the new polygon table
WITH dump AS (
SELECT id, test, --columns from your multipolygon table
(ST_DUMP(geometry)).geom AS geometry
FROM multi --the name of your multipolygon table
)
SELECT id, test,
geometry::geometry(Polygon,4326) --type cast using SRID from multipolygon
FROM dump;
Atualização: Eu acho que isso poderia ser feito muito mais fácil com esta consulta.
CREATE TABLE polygon_table AS
SELECT id, example_column, (ST_DUMP(geom)).geom::geometry(Polygon,4326) AS geom FROM multipolygon_table