Complete the sentence to describe bitmap indexes.
Bitmap indexes are most efficient when the column has [1] cardinality.Bitmap indexes work best on columns with low cardinality, meaning few distinct values, because they use bitmaps to represent each value efficiently.
Complete the sentence to explain a benefit of bitmap indexes.
Bitmap indexes improve query performance by allowing [1] operations on bitmaps.Bitmap indexes allow logical operations like AND, OR, and NOT on bitmaps, which speeds up complex queries.
Fix the error in the statement about bitmap indexes.
Bitmap indexes are ideal for columns with [1] unique values.
Bitmap indexes are ideal for columns with few unique values, which means low cardinality.
Fill both blanks to complete the explanation of bitmap index usage.
Bitmap indexes use [1] to represent each distinct value and are efficient for [2] queries.
Bitmap indexes use bitmaps to represent each distinct value and are efficient for low-cardinality queries.
Fill all three blanks to complete the bitmap index creation example.
CREATE BITMAP INDEX [1] ON [2]([3]);
This command creates a bitmap index named idx_gender on the gender column of the employees table.