Lesson 15 of 3247%
(Progress persistence is disabled until Phase 9)
SQL
Beginner
Introduction to JOINs
Combine data from multiple tables.
Introduction to JOINs
Combine data from multiple tables.
Example
-- Basic JOIN example
SELECT users.name, orders.status FROM users JOIN orders ON users.id = orders.user_id;
Test it Yourself