SQL Reference Contents

NAME

drop index - removes an index from Postgres

SYNOPSIS

drop index index_name

DESCRIPTION

This command drops an existing index from the Postgres system. To execute this command you must be the owner of the index.

EXAMPLE

--
--this command will remove the "emp_index" index
--
drop index emp_index

SEE ALSO

create index(l) .


Table of Contents