drop table in psql shell 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
DROP TABLE IF EXISTS tablename;
drop table if exists tableName