drop table in postgresql code example
Example 1: how to remove tables from postgresql
DROP TABLE IF EXISTS tablename;
Example 2: possgress drop if exists table
drop table if exists tableName
Example 3: postgresql drop table
DROP TABLE name;
Example 4: psql delete table
DROP TABLE [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]