

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 7
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
| id | name | age | country_code | username | password | is_admin |
|---|---|---|---|---|---|---|
| 1 | David | 34 | US | DavidDev | insertPractice | 0 |
| 2 | Samantha | 29 | BR | Sammy93 | addingRecords! | 0 |
| 3 | John | 39 | CA | Jjdev21 | welovebootdev | 0 |
| 4 | Ram | 42 | IN | Ram11c | thisSQLcourserocks | 0 |
| 5 | Hunter | 30 | US | Hdev92 | backendDev | 0 |
| 6 | Allan | 27 | US | Alires | iLoveB00tdev | 1 |
| 7 | Al | 39 | JP | quickCoder | snake_case | 0 |
| id | user_id | recipient_id | sender_id | amount |
|---|---|---|---|---|
| 1 | 1 | 4 | 10.5 | |
| 2 | 3 | 10 | 9.56 | |
| 3 | 1 | 2 | 256.21 | |
| 4 | 10 | 2 | 50 |
| id | name | age | country_code | username | password | is_admin | id | user_id | recipient_id | sender_id | amount |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | David | 34 | US | DavidDev | insertPractice | 0 | 1 | 1 | 4 | 10.5 | |
| 3 | John | 39 | CA | Jjdev21 | welovebootdev | 0 | 2 | 3 | 10 | 9.56 | |
| 1 | David | 34 | US | DavidDev | insertPractice | 0 | 3 | 1 | 2 | 256.21 |
SELECT *
FROM users
________ transactions
ON users.id = transactions.user_id;