First Move (11~18) - Code, Learn, Build
🧭 Career CompassDashboardProgress
Loading...
First Move (11~18) - Code, Learn, Build

Structured, level-based technology learning paths from foundational exploration to industry mastery.

Learning Domains

  • Python Programming (Active)
  • Computer Science Core
  • Web Development
  • AI & Machine Learning

Platform Architecture

  • Level-Based Progression
  • Decoupled Content Schema
  • Modular Code Execution Engine
  • Curated Official Resources

© 2026 First Move (11~18) • CODE • LEARN • BUILD. Built with Next.js App Router.

Readability & Accessibility First

← SQL & Database Management Systems|Level 1: Relational Database Fundamentals & SQL Queries

2. Multi-Table JOINs & GROUP BY Aggregations

Lesson 2 of 6
Saved Locally (Guest)
Progress
0%

Multi-Table JOINs & GROUP BY Aggregations

Combine tables using INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL OUTER JOIN, and summarize data with GROUP BY & HAVING.

SQL JOIN Types & Grouping Rules

### SQL JOIN Venn Matrix - **INNER JOIN**: Returns only matching rows present in BOTH tables. - **LEFT JOIN**: Returns ALL rows from the left table, plus matched right table rows (filling missing values with `NULL`). - **GROUP BY & HAVING**: Aggregates row values (`SUM`, `AVG`, `COUNT`, `MAX`). The `HAVING` clause filters AFTER group aggregation.
💻 Ready to test your knowledge with code?
Solve the hands-on coding exercise in the interactive code editor.