CREATE INDEX
The CREATE INDEX
command is used to create indexes in tables (allows duplicate values).
Indexes are used to retrieve data from the database very fast. The users cannot see the indexes, they are just used to speed up searches/queries.
The following SQL creates an index named “idx_lastname” on the “LastName” column in the “Persons” table: Continue reading SQL CREATE INDEX Keyword