Quick recall mode

Keywords first, details second.

Use this mode when you want memory triggers only: title, summary, tags, and bullet anchors without long answers getting in the way.

Clear

Results update as you type. Press / to jump straight into search.

Quick recall

374 cards

SQL Easy Theory

Explain ACID

ACID stands for atomicity, consistency, isolation, and durability.

  • Atomicity means all or nothing
  • Isolation controls concurrency visibility
  • Durability survives crashes after commit
SQL Easy Theory

Explain SQL joins

Joins combine rows from tables based on a related key, with inner and outer joins deciding what unmatched rows survive.

  • INNER keeps matches
  • LEFT keeps all left rows
  • Join condition matters