psql/drop-index

Drop Index

Delete a PostgreSQL index

index
delete

Command

DROP INDEX indexname;

Explanation

Drops an existing index from the current database.

Examples

Drop index on email column

DROP INDEX idx_users_email;