World Population By Countries (2025)
Countries List Based on the Population
@kaggle.samithsachidanandan_world_population_by_countries_2025
Countries List Based on the Population
@kaggle.samithsachidanandan_world_population_by_countries_2025
Description
This Dataset contains details of World Population by country. According to the worldometer, the current population of the world is 8.2 billion people. Highest populated country is India followed by China and USA.
Attribute Information
Acknowledgements
https://www.worldometers.info/world-population/population-by-country/
CREATE TABLE wolrd_population_data (
"rank" BIGINT,
"country" VARCHAR,
"population_2024" BIGINT -- Population (2024),
"yearly_change" VARCHAR,
"net_change" BIGINT,
"density_p_km" BIGINT -- Density (P/Km²),
"land_area_km" BIGINT -- Land Area (Km²),
"migrants_net" BIGINT -- Migrants (net),
"fert_rate" DOUBLE -- Fert. Rate,
"med_age" BIGINT -- Med. Age,
"urban_pop" VARCHAR -- Urban Pop %,
"world_share" VARCHAR
);
Anyone who has the link will be able to view this.