```sql SELECT ci.City, ci.State, ci.Population FROM person_info as pi INNER JOIN city_info as ci ON pi.City = ci.City AND pi.State = ci.State ``` Help us understand what action is being performed with the above query and improve it if necessary.
```sql SELECT ci.City, ci.State, ci.Population FROM person_info as pi INNER JOIN city_info as ci ON pi.City = ci.City AND pi.State = ci.State ``` Help us understand what action is being performed with the above query and improve it if necessary.