Given this table (employees):
| id | name | manager_id |
|---|---|---|
| 1 | Alice | NULL |
| 2 | Bob | 1 |
| 3 | Carol | 1 |
What order do rows appear in after this query (list names)?
SELECT name FROM employees ORDER BY manager_id ASC NULLS FIRST;
← → arrow keys to navigate
Sign in to save your progress.