SQL Statements and Extensions for the Salesforce Driver : Create Index

Create Index
Purpose
The Create Index statement creates an index on one or more columns in a local table.
Syntax
CREATE [UNIQUE] INDEX index_name ON table_name (column_name [, ...])
where:
UNIQUE
Means that key columns cannot have duplicate values.
index_name
Specifies the name of the index to be created.
table_name
Specifies an existing local table.
column_name
Specifies an existing column.
Notes

© 2013 Progress Software Corporation and/or its subsidiaries or affiliates.