Discord servers display the current number of active members to help communities gauge engagement. Your task is to query the membership data to find out how many people are currently active.
Write an SQL query to count the number of members in server_id 5501 whose status is currently Online.
| server_id(INTEGER) | user_id(INTEGER) | status(VARCHAR) |
|---|---|---|
| 5501 | 10 | Online |
| 5501 | 11 | Idle |
| 5502 | 12 | Online |
| 5501 | 13 | Online |
| 5501 | 14 | Offline |
| 5501 | 15 | Online |
| 5503 | 16 | DND |
| server_id(INTEGER) | online_member_count(INTEGER) |
|---|---|
| 5501 | 3 |