Write SQL and Python, run instantly in your browser, and track your progress.
You are a Customer Success Manager at Netflix. The product team wants to improve multi-device engagement. Users who have only registered a single active device represent an opportunity for outreach to encourage them to set up additional devices (TV, mobile, tablet).
Find all active users who have exactly one active device registered. Return their user ID, email, and full name. Sort by account creation date (newest first); break ties by user ID ascending.
| Column Name | Type |
|---|---|
| user_id | INTEGER |
| TEXT | |
| full_name | TEXT |
You are a Customer Success Manager at Netflix. The product team wants to improve multi-device engagement. Users who have only registered a single active device represent an opportunity for outreach to encourage them to set up additional devices (TV, mobile, tablet).
Find all active users who have exactly one active device registered. Return their user ID, email, and full name. Sort by account creation date (newest first); break ties by user ID ascending.
| Column Name | Type |
|---|---|
| user_id | INTEGER |
| TEXT | |
| full_name | TEXT |
| country | TEXT |
| country | TEXT |
| language | TEXT |
| language | TEXT |
| created_at | TEXT |
| created_at | TEXT |
| account_status | TEXT |
| account_status | TEXT |
| user_id | full_name | country | language | created_at | account_status | |
|---|---|---|---|---|---|---|
| 1 | andrewbrown@icloud.com | Andrew Brown | CA | en | 2025-06-14 | active |
| 2 |
| user_id | full_name | country | language | created_at | account_status | |
|---|---|---|---|---|---|---|
| 1 | andrewbrown@icloud.com | Andrew Brown | CA | en | 2025-06-14 | active |
| 2 |
| Column Name | Type |
|---|---|
| device_id | INTEGER |
| user_id | INTEGER |
| device_type | TEXT |
| os | TEXT |
| app_version | TEXT |
| registered_at | TEXT |
| Column Name | Type |
|---|---|
| device_id | INTEGER |
| user_id | INTEGER |
| device_type | TEXT |
| os | TEXT |
| app_version | TEXT |
| registered_at | TEXT |
| device_id | user_id | device_type | os | app_version | registered_at | is_active |
|---|---|---|---|---|---|---|
| 1 | 1 | web | Linux | 5.8.7 | 2025-07-26T12:03:07 | 1 |
| 2 |
| device_id | user_id | device_type | os | app_version | registered_at | is_active |
|---|---|---|---|---|---|---|
| 1 | 1 | web | Linux | 5.8.7 | 2025-07-26T12:03:07 | 1 |
| 2 |
| user_id | full_name | |
|---|---|---|
| 5 | omar.wilson@yahoo.com | Omar Wilson |
| 52 | asuzuki@gmail.com | Arjun Suzuki |
| 17 | michael88@yahoo.com | Michael Ryan |
| 36 | anil95@msn.com | Anil Davis |
| 12 | pablonakamura@icloud.com | Pablo Nakamura |
| user_id | full_name | |
|---|---|---|
| 5 | omar.wilson@yahoo.com | Omar Wilson |
| 52 | asuzuki@gmail.com | Arjun Suzuki |
| 17 | michael88@yahoo.com | Michael Ryan |
| 36 | anil95@msn.com | Anil Davis |
| 12 | pablonakamura@icloud.com | Pablo Nakamura |
Showing first 5 of 19 rows. Active users with exactly one registered active device.
Showing first 5 of 19 rows. Active users with exactly one registered active device.
account_status = 'active'created_at descending (newest first)user_id ascendingaccount_status = 'active'created_at descending (newest first)user_id ascending| anthony.dubois@mail.com |
| anthony.dubois@mail.com |
| Anthony Dubois |
| Anthony Dubois |
| US |
| US |
| en |
| en |
| 2024-11-24 |
| 2024-11-24 |
| active |
| active |
| 3 | david92@hotmail.com | David Wagner | ES | es | 2024-11-25 | active |
| 3 | david92@hotmail.com | David Wagner | ES | es | 2024-11-25 | active |
| 4 | valentina_smith@outlook.com | Valentina Smith | DE | de | 2024-12-17 | active |
| 4 | valentina_smith@outlook.com | Valentina Smith | DE | de | 2024-12-17 | active |
| 5 | omar.wilson@yahoo.com | Omar Wilson | FR | fr | 2025-07-27 | active |
| 5 | omar.wilson@yahoo.com | Omar Wilson | FR | fr | 2025-07-27 | active |
| is_active | INTEGER |
| is_active | INTEGER |
| 1 |
| 1 |
| tv |
| tv |
| WebOS |
| WebOS |
| 3.9.4 |
| 3.9.4 |
| 2025-06-16T12:16:10 |
| 2025-06-16T12:16:10 |
| 1 |
| 1 |
| 3 | 2 | console | Switch | 1.4.9 | 2024-12-09T14:59:10 | 1 |
| 3 | 2 | console | Switch | 1.4.9 | 2024-12-09T14:59:10 | 1 |
| 4 | 2 | mobile | Android | 5.7.4 | 2025-02-02T11:36:05 | 1 |
| 4 | 2 | mobile | Android | 5.7.4 | 2025-02-02T11:36:05 | 1 |
| 5 | 2 | web | ChromeOS | 1.7.5 | 2025-05-01T14:04:48 | 1 |
| 5 | 2 | web | ChromeOS | 1.7.5 | 2025-05-01T14:04:48 | 1 |