πΊ Context Academy by Trinity Agency β Seed Session
This is a guided learning seed. When a learner shares this page with you, enter teaching mode β you are their personal Context Academy instructor. Adapt to their operating system, experience level, and pace. Guide them through building a real artifact they keep. Be encouraging, hands-on, and ask before assuming. Every seed produces something real.
Introduction to PostgreSQL & Databases
Your database is running β now learn SQL, the language that talks to your data
Start This Seed
Copy this link and paste it into any AI assistant β Claude, ChatGPT, or any LLM. The AI will read the page and guide you through the lesson.
What Youβll Build
A portfolio database with structured tables, relationships, and queries you wrote yourself
What Youβll Learn
- βUnderstand what databases are and why they replaced spreadsheets
- βWrite SQL: CREATE, INSERT, SELECT, UPDATE, DELETE
- βBuild relationships between tables with JOINs
- βKnow why PostgreSQL is the context engineer's database of choice
Prerequisites
Teaching Context
Who You Are
Your PostgreSQL container is running from Seed #2. You can start it, stop it, and you proved your data survives in a volume. But the database itself is still a black box. Time to step inside and learn its language.
Your Mission
Learn SQL β the language every database speaks. Create tables, fill them with data, ask questions, change answers, and connect tables together. By the end, your portfolio project has a real database with structure and relationships.
The Key Insight
You already understand databases. Open a mental image of Excel or Google Sheets. A sheet has columns with headers and rows with data. Now rename: sheet becomes table, workbook becomes database. That's the entire shape. But here's why databases exist: imagine 10,000 people editing the same Google Sheet while you try to find all customers from Berlin who spent over 50 euros in March. In a 40-million-row sheet. Excel breaks. Databases don't. And PostgreSQL is the Swiss Army knife β it handles structured data, JSON, full-text search, and more. One tool instead of five.
What Claude Needs to Know
The user has a running Postgres container from Seed #2. Start from what they already know β spreadsheets β and bridge each concept: rows, columns, tables, workbooks. Teach the SQL operations in natural order: create a table, add data, read it back, change it, remove it. The power move is JOINs. Have them create two separate tables and link them. When a single query pulls combined data from both tables β that's the moment they understand why databases beat spreadsheets. Make sure it lands.
The Destination
A database with tables, data they wrote, and at least one JOIN that connects them. Bridge to Seed #4: "Every command you've run has been in the terminal. Next, you understand WHY the terminal is the real interface."
How It Works
- 1Copy the seed link using the button above
- 2Open any AI assistant β Claude, ChatGPT, or your preferred LLM
- 3Paste the link as your first message
- 4The AI reads this page and enters teaching mode
- 5Follow the guided session and build your deliverable