Query
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.