If the value in a column is not unique then which index is used ?
-
bitmap indexes
-
b*-tree indexes
-
composite unique index
-
cluster index
A
Correct answer
Explanation
Bitmap indexes are ideal for columns with low cardinality (non-unique values) because they store bitmaps efficiently for repetitive values. B-tree indexes work better for unique or high-cardinality columns. A composite unique index would require unique values, and cluster index is not the standard term for non-unique column indexing.