Twitter product managers want to see which account categories are growing most effectively.
Write an SQL query to find the average number of followers for each account category.
| user_id(INTEGER) | follower_id(INTEGER) |
|---|---|
| 1 | 2 |
| 1 | 3 |
| 2 | 1 |
| 3 | 1 |
| 3 | 2 |
| 3 | 4 |
| user_id(INTEGER) | category(VARCHAR) |
|---|---|
| 1 | Business |
| 2 | Personal |
| 3 | Business |
| user_id(INTEGER) | creation_date(DATE) | verified_status(BOOLEAN) |
|---|---|---|
| 1 | 2020-01-01 | true |
| 2 | 2021-05-12 | false |
| category(VARCHAR) | avg_followers(DECIMAL) |
|---|---|
| Business | 2.5 |
| Personal | 1 |