Dropping Tables in PostgreSQL
Dropping Tables¶ Let us go through the details related to dropping tables. We can drop table using DROP TABLE. All the direct dependent objects such as indexes, primary key constraints, unique constraints, not null constraints will automatically be dropped. Sequences will be dropped only if the sequence is owned by the column. If there are …