Validate improvement instead of guessing.
Section: Quick checklist
Measure with EXPLAIN before and after
sql
sql
EXPLAIN SELECT * FROM orders WHERE status = 'paid' ORDER BY created_at DESC;Explanation
Capture the baseline plan, add the index, then compare the new plan and latency.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Quick checklist
Prefer high-selectivity columns
Columns with many distinct values tend to benefit more.
Remember the write cost
Every extra index must be maintained during inserts, updates, and deletes.