PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come modificare lo schema di più tabelle PostgreSQL in un'unica operazione?

DO farà il trucco:

DO
$$
DECLARE
    row record;
BEGIN
    FOR row IN SELECT tablename FROM pg_tables WHERE schemaname = 'public' -- and other conditions, if needed
    LOOP
        EXECUTE 'ALTER TABLE public.' || quote_ident(row.tablename) || ' SET SCHEMA [new_schema];';
    END LOOP;
END;
$$;