Delete a PostgreSQL database
Delete a PostgreSQL user
Delete a PostgreSQL table
Delete a PostgreSQL index
DROP INDEX indexname;
Drops an existing index from the current database.
Drop index on email column
DROP INDEX idx_users_email;
Create a new PostgreSQL index
Delete a PostgreSQL view
Delete a PostgreSQL function