What is clustered index in SQL?

Asked: Apr 14, 2023

A clustered index is actually a table where the data for the rows are stored. It determines the order of the table data based on the key values that can sort in only one direction. Each table can have only one clustered index. It is the only index, which has been automatically created when the primary key is generated. If many data modifications needed to be done in the table, then clustered indexes are preferred.

Asked by brijesh

Answers (0)

No answers yet. Be the first to answer!