

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 5
click for more info
Not enough gems
Cost: 6 gems
1: Joins
incomplete
2: Namespacing on Tables
incomplete
3: Left Join
incomplete
4: Right Join
incomplete
5: Full Join
incomplete
6: Joins Quiz
incomplete
7: Joins Quiz
incomplete
8: Joins Quiz
incomplete
9: Join Practice
incomplete
10: Query Practice – Support Tickets
incomplete
Back
ctrl+,
Next
ctrl+.
This lesson's interactive features are locked, please to keep using them
When working with multiple tables, you can specify which table a field belongs to using a .. For example:
table_name.column_name
SELECT students.name, classes.name
FROM students
INNER JOIN classes ON classes.class_id = students.class_id;
The above query returns the name field from the students table and the name field from the classes table.
Adjust the query to: