- Does it cover JSONB?
- Yes — indexing, querying with @>, path expressions, and common update patterns. Postgres's killer feature for JSON-heavy apps.
- psql commands?
- All the common ones: \l, \dt, \d, \df, \e for editing, \i for files. Essential for DBA work in the terminal.
- What about EXPLAIN?
- Yes — EXPLAIN vs EXPLAIN ANALYZE, common plan nodes (Seq Scan, Index Scan, Hash Join), and spotting red flags.
- Window functions?
- Yes — ROW_NUMBER(), RANK(), LAG/LEAD, running totals. With common patterns like 'top N per group' and 'gap detection'.