Select Database
Sara only reaches for Select Database when student names has to stay correct in marks table.
Keep Select Database small. Sara should finish student names in a few lines, not a 40-line dump.
Skip Select Database and SELECT * in production reports shows up in marks table.
Sara ships Select Database in marks table. That is the use case worth saying.
Select Database miss — SELECT * in production reports. Fix it before you talk about advanced SQL.
Place Select Database next to nearby SQL work — SELECT name, marks FROM … is the link.
Viva for Select Database — what it is → SELECT name, marks FROM … → the mistake (SELECT * in production reports).
FROM students
│
▼
WHERE city = 'Pune'
│
▼
SELECT name, marksFor Select Database: definition + marks table + one failure.