bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL CREATE UNIQUE INDEX Keyword

Concept visual

SQL CREATE UNIQUE INDEX Keyword

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

CREATE UNIQUE INDEX Keyword

Previous

❮ SQL Keywords

Next

Create Unique Index

The CREATE UNIQUE INDEX

command creates a unique index on a table (no duplicate values allowed) 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 "uidx_pid" on the "PersonID" column in the "Persons" table: CREATE UNIQUE INDEX uidx_pid

ON Persons (PersonID);

Note:

The syntax for creating indexes varies among different databases. Therefore: Check the syntax for creating indexes in your database.

Note:

Updating a table with indexes takes more time than updating a table without (because the indexes also need an update). So, only create indexes on columns that will be frequently searched against.

Previous

❮ SQL Keywords

Next

Previous

SQL CREATE PROCEDURE Keyword

Next

SQL CREATE VIEW Keyword