CREATE INDEX

Creates indexes in the table.

Syntax

CREATE INDEX index_name
ON table_name (column1, column2, ...);

Example

CREATE INDEX index_1

ON queenbee (column_bee1)