SQL - Indexes and Query Performance
A composite index on (category, price) was created, but queries filtering only on price are slow. You try this query:
What is the best fix?
SELECT * FROM products WHERE price < 100;
What is the best fix?
