PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

So löschen Sie mehrere Tabellen in PostgreSQL mit einem Platzhalter

Verwenden Sie eine durch Kommas getrennte Liste:

DROP TABLE foo, bar, baz;

Wenn Sie wirklich eine Fußpistole brauchen, wird diese hier ihren Job machen:

CREATE OR REPLACE FUNCTION footgun(IN _schema TEXT, IN _parttionbase TEXT) 
RETURNS void 
LANGUAGE plpgsql
AS
$$
DECLARE
    row     record;
BEGIN
    FOR row IN 
        SELECT
            table_schema,
            table_name
        FROM
            information_schema.tables
        WHERE
            table_type = 'BASE TABLE'
        AND
            table_schema = _schema
        AND
            table_name ILIKE (_parttionbase || '%')
    LOOP
        EXECUTE 'DROP TABLE ' || quote_ident(row.table_schema) || '.' || quote_ident(row.table_name) || ' CASCADE ';
        RAISE INFO 'Dropped table: %', quote_ident(row.table_schema) || '.' || quote_ident(row.table_name);
    END LOOP;
END;
$$;

SELECT footgun('public', 'tablename');