Advanced Database & SQL #indexing #B-tree #partial-index #covering-index

Indexing Strategy Language

5 exercises — practise the English vocabulary for indexing strategy discussions: B-tree limitations, partial indexes, the leftmost prefix rule, covering indexes, and arguing about the trade-offs of excessive indexing.

0 / 26 completed
1 / 26

A DBA says: "B-tree indexes support equality and range queries on sortable types." A new column description TEXT is proposed for full-text search. Which query type would NOT benefit from a standard B-tree index on description?

-- Query A: WHERE description = 'exact match'
-- Query B: WHERE description LIKE 'prefix%'
-- Query C: WHERE description LIKE '%substring%'
-- Query D: WHERE description > 'alpha' AND description < 'beta'

Frequently Asked Questions

What does the "Indexing Strategy Language" exercise practise?

Practice English for database indexing strategy discussions: B-tree limitations, partial indexes, leftmost prefix rule, covering indexes, and trade-offs of excessive indexing. 5 advanced exercises.

How many questions are in this exercise?

This exercise has 26 questions, each multiple-choice with a full explanation shown after you answer.

What English level is this exercise for?

This exercise is tagged Advanced. If the vocabulary feels difficult, browse the Database & SQL category page for an easier module to start with.