Question 1: Index - Purpose
What is the primary purpose of using an index in a database?
Question 2: Index - Clustered vs Non-clustered
How does a clustered index differ from a non-clustered index?
Question 3: Primary Key and Index
By default, what type of index is created on a Primary Key?
Question 4: Creating a Unique Index
You need to ensure that the combination of product_id and supplier_id in a product_suppliers table is always unique, while also improving query performance on these columns. Which statement achieves both goals?
Question 5: Composite Index
What does a composite index refer to?
Question 6: Full-Text Index
Which index type is best for searching large text fields?
Question 7: Bitmap Index
In which scenario is a bitmap index most effective?
Question 8: Index Overhead
What is a disadvantage of too many indexes?
Question 9: Covering Index
What is a covering index?
Question 10: Index and Query Optimization
Which type of queries benefit most from indexes?