In which scenario would you consider using a non-clustered index over a clustered index?

  • When you frequently query a large range of values
  • When you need to enforce a primary key constraint
  • When you need to physically reorder the table data
  • When you want to ensure data integrity
A non-clustered index is considered when you frequently query a large range of values or when you want to avoid the overhead of reordering the physical data in the table, which is required by a clustered index.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *