3.3.32 DROP INDEX
DROP INDEX -- remove an index
DROP INDEX name
DROP INDEX drops an existing index from the database system. To execute this command you must be a superuser or the owner of the index. If any objects depend on the index, an error will be given and the index will not be dropped.
name
The name (optionally schema-qualified) of an index to remove.
This command will remove the index, name_idx:
DROP INDEX name_idx;
See Also
Copyright © 2013 EnterpriseDB Corporation. All rights reserved.




