ALTER INDEX -- change the definition of an index
ALTER INDEX name RENAME TO new_name
ALTER INDEX changes the definition of an existing index. RENAME changes the name of the index. There is no effect on the stored data.
name
The name (possibly schema-qualified) of an existing index to alter.
new_name
New name for the index.
To rename an existing index:
ALTER INDEX name_idx RENAME TO empname_idx;