8. OpenSQL Statements
:
CREATE INDEX
:
Example: Create Index
Share this page
Example: Create Index
Create an index called, x, for the columns, ename and age, on employee table.
create index x on employee (ename, age);