psql/drop-table

Drop Table

Delete a PostgreSQL table

table
delete

Command

DROP TABLE tablename;

Explanation

Drops an existing table from the current database.

Examples

Drop users table

DROP TABLE users;