/*25. Write a query in SQL to display the country ID and number of cities in that country we have.*/ SELECT country_id, COUNT(*) FROM locations GROUP BY country_id;