Robinhood is analyzing regional trading activity. You need to identify the top 3 cities that have the highest number of completed stock trades.
Write an SQL query to retrieve the city name and the total count of completed trades for those top 3 cities.
| user_id(INTEGER) | status(VARCHAR) |
|---|---|
| 101 | Completed |
| 101 | Completed |
| 102 | Completed |
| 104 | Completed |
| 105 | Completed |
| user_id(INTEGER) | city(VARCHAR) |
|---|---|
| 101 | San Francisco |
| 102 | New York |
| 104 | New York |
| 105 | Austin |
| city(VARCHAR) | total_trades(INTEGER) |
|---|---|
| New York | 2 |
| San Francisco | 2 |
| Austin | 1 |