Skip to main content
✏️ Code CompletionSQ SQL Hard+35 XP

Window Function

Complete the window function.

✏️ Fill in the blank
SELECT name, salary,
    RANK() ___ (ORDER BY salary DESC) AS rank
FROM employees;

✏️ Type the missing code: