What is the difference between a clustered index and a non-clustered index?
Q1. What is the difference between a clustered index and a non-clustered index?
Answer: Clustered index reorders data, non-clustered index does not
Explanation: A clustered index reorders the physical data, while a non-clustered index creates a separate data structure to store index keys.