Which type of index is designed to improve query performance for columns with low cardinality?

  • B-Tree Index
  • Bitmap Index
  • Clustered Index
  • Hash Index
A Bitmap Index is specifically designed for columns with low cardinality, where there are only a few distinct values. It works by creating a bitmap for each distinct value in the column, indicating which rows contain that value. This allows for efficient retrieval of rows matching specific values, making it suitable for columns with low cardinality.
Add your answer
Loading...

Leave a comment

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