IT lexicon Database Query

Query

Database På svenska → Updated: 2026-05-24

A request to the database — SELECT, INSERT, UPDATE, DELETE.

The database's "query planner" decides how to execute it. EXPLAIN shows the plan — critical for finding missing indexes. The N+1 query problem (one query per row) is the classic performance bug.

← Back to the lexicon