0 votes
in Sql by
What are Indexes in SQL?

1 Answer

0 votes
by

The index can be defined as the way to retrieve the data more quickly. We can define indexes using CREATE statements.

Syntax:

CREATE INDEX index_name

 ON table_name (column_name)

Further, we can also create a Unique Index using the following syntax:

CREATE UNIQUE INDEX index_name

 ON table_name (column_name)

UPDATE: We have added few more short questions for practice.

...