CREATE INDEX | Required keywords. |
index_name | The unique name of the index. |
ON | Required keyword. |
table_name | The unique name of the table on which the index is based. |
column_list | A list of columns that make up the index. |
DESC | A keyword that denotes that the column is stored in descending order. Oracle treats desc indexes as function bases indexes |
create index cust_didx1 on cust(cust_id desc);