Expedia marketing teams want to tailor their advertisements based on regional preferences. Specifically, they want to know which destination city is most popular among users who reside in California.
Write an SQL query to find the destination city with the highest number of searches from California-based users.
| user_id(INTEGER) | user_state(VARCHAR) |
|---|---|
| 1 | California |
| 2 | New York |
| 3 | California |
| 4 | Texas |
| 5 | California |
| 6 | California |
| search_id(INTEGER) | user_id(INTEGER) | destination_city(VARCHAR) |
|---|---|---|
| 101 | 1 | Las Vegas |
| 102 | 3 | Las Vegas |
| 103 | 2 | Miami |
| 104 | 5 | Seattle |
| 105 | 6 | Las Vegas |
| 106 | 1 | Seattle |
| destination_city(VARCHAR) | search_count(INTEGER) |
|---|---|
| Las Vegas | 3 |