---
title: "What is a Clustered Index?"  
description: "What is a Clustered Index?"  
author: "Sumit Kesarwani"  
published: 2014-01-27  
updated: 2020-09-21  
canonical: https://www.mindstick.com/interview/1892/what-is-a-clustered-index  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# What is a Clustered Index?

The data rows are stored in order based on the clustered index key.

Data stored is in a sequence of the index.

In a clustered index, the physical order of the rows in the table is the same as the logical (indexed) order of the key values.

A table can contain only one clustered index.

A clustered index usually provides faster access to data than does a non-clustered index.

## Answers

### Answer by Sumit Kesarwani

The data rows are stored in order based on the clustered index key.

Data stored is in a sequence of the index.

In a clustered index, the physical order of the rows in the table is the same as the logical (indexed) order of the key values.

A table can contain only one clustered index.

A clustered index usually provides faster access to data than does a non-clustered index.


---

Original Source: https://www.mindstick.com/interview/1892/what-is-a-clustered-index

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
