As a data analyst I need to know all the countries in a region organised by largest population to smallest to make data-driven decisions, and generate valuable insights for stakeholders.
SELECT name as
country, population
FROM country; -- retrieves country name and population
As a data analyst I need to know all the countries in a region organised by largest population to smallest to make data-driven decisions, and generate valuable insights for stakeholders.
SELECT name as country, population FROM country; -- retrieves country name and population