要在Oracle中創建普通索引,可以使用以下語法:
CREATE INDEX index_name
ON table_name (column1, column2, ...);
示例:
CREATE INDEX idx_customer_id
ON customers (customer_id);
在上面的示例中,我們在“customers”表的“customer_id”列上創建了名為“idx_customer_id”的普通索引。您還可以在多個列上創建索引,只需在括號中列出要在其上創建索引的列即可。