PostgreSQL – Drop Table

Syntax to drop a table in Postgres:

DROP TABLE tablename;

Syntax to drop multiple tables in Postgres:

DROP TABLE tablename1, tablename2;

See also  PostgreSQL - EXCEPT operator