---
answer: direct
beat: system-design
source: 1 article · updated: September 1, 2026
---

What is a composite index and why does column order matter?

A composite index covers multiple columns together, like (last_name, first_name). It can serve queries filtering on last_name alone, or on both columns together — but not on first_name alone, because the index is physically sorted by the first column first. Column order should match your most common filter patterns, leading with the column most queries filter on.

Answered in

Database Indexing Explained: Which Index Type Actually Fits Your Query

B-tree, hash, composite, and covering indexes each solve a different query shape. Pick the wrong one and you pay index overhead without the speedup.

Crashtech Editorial September 1, 2026 System Design

Read the full analysis

Other questions this article answers

More system design questions

Every answer on Crashtech is written by the editor of the article it comes from — never auto-summarised. Browse all answers or the System Design beat.