System Reference Summary : 2. Statements : OpenROAD SQL Statements : Create Index Statement
 
Share this page                  
Create Index Statement
The create index statement creates an index on an existing table.
This statement has the following syntax:
create [unique] index [schema.]index_name
              on [schema.]table_name
              (column_name {, column_name})
              [with with_clause];