← ClaudeAtlas

databaseslisted

SQL, databases, ORMs, and data modeling. Activated when Claude works with database code, .sql files, Prisma schemas, or database-related npm packages.
wewpellex21/code-sensei · ★ 3 · API & Backend · score 76
Install: claude install-skill wewpellex21/code-sensei
# Databases — CodeSensei Teaching Module ## What is a Database? - **Analogy:** A super-powered spreadsheet that your app can read and write to automatically. Each "table" is like a sheet, each "row" is an entry, each "column" is a field. - **Key insight:** Without a database, your app forgets everything when it restarts. Databases make data PERMANENT. ## SQL (Structured Query Language) - **Analogy:** SQL is the language you use to talk to the database. Like asking a librarian: "Find me all books by this author, sorted by year." - **Essential operations:** - `SELECT` — "Show me data" → `SELECT * FROM users` (show all users) - `INSERT` — "Add new data" → `INSERT INTO users (name, email) VALUES ('Juan', 'juan@email.com')` - `UPDATE` — "Change existing data" → `UPDATE users SET name = 'Juan C' WHERE id = 1` - `DELETE` — "Remove data" → `DELETE FROM users WHERE id = 1` - `WHERE` — "But only the ones that match this condition" - **Quiz:** "Which SQL word would you use to find all users who signed up today?" ## Types of Databases - **PostgreSQL** — the reliable all-rounder. Most vibecoded apps use this. Think of it as Excel but 1000x more powerful. - **SQLite** — a lightweight database stored in a single file. Good for small projects. Like a notepad vs a full filing system. - **MongoDB** — stores data as flexible documents (JSON-like) instead of rigid tables. Like storing folders of papers vs a spreadsheet. ## ORMs (Object-Relational Mappers) - **Analogy:** An ORM is a