Meta needs to identify the most "social" users on the platform. In the request_accepted table, every row represents a friendship formed between requester_id and accepter_id.
Write an SQL query to find the person who has the most friends and the most friends count.
| requester_id(INTEGER) | accepter_id(INTEGER) | accept_date(DATE) |
|---|---|---|
| 1 | 2 | 2016-06-01 |
| 1 | 3 | 2016-06-08 |
| 2 | 3 | 2016-06-08 |
| 3 | 4 | 2016-06-09 |
| id(INTEGER) | num(INTEGER) |
|---|---|
| 3 | 3 |