# Dbms
All Dbms notes →1 — Query Execution
Traces a query's path from parsing through optimization to execution, and how to read an execution plan.
dbms query-processing book
2 — Query Optimization
Covers cost-based and rule-based optimization, join ordering, and predicate/projection pushdown.
dbms query-processing book
3 — Join Algorithms
Compares nested loop, block nested loop, index nested loop, merge join, and hash join algorithms and when the optimizer picks each.
dbms query-processing book