Skip to main content
✏️ Code CompletionSQ SQL Medium+20 XP

Subquery Pattern

Complete the subquery.

✏️ Fill in the blank
SELECT name FROM employees
WHERE salary > (
    SELECT ___(salary) FROM employees
);

✏️ Type the missing code: