Skip to main content
✏️ Code CompletionSQ SQL Easy+10 XP

JOIN Clause

Complete the JOIN query.

✏️ Fill in the blank
SELECT users.name, orders.total
FROM users
___ JOIN orders ON users.id = orders.user_id;

✏️ Type the missing code: