SQL Reference Contents
drop index - removes an index from Postgres
drop index
index_name
This command drops an existing index from the
Postgres system. To execute this command you must be the owner of the
index.
--
--this command will remove the "emp_index" index
--
drop
index emp_index
create index(l)
.
Table of Contents