SQL - Indexes and Query Performance
You want to optimize this query:
Which covering index will best speed up this query?
SELECT user_id, last_login, status FROM users WHERE status = 'active' AND last_login > '2024-01-01';Which covering index will best speed up this query?
