Population Of China (2020 And Historical)
Historical Population. Population Forecast, Population in Major Cities
@kaggle.anandhuh_population_data_china
Historical Population. Population Forecast, Population in Major Cities
@kaggle.anandhuh_population_data_china
The current population of China is 1,448,978,293 as of Wednesday, March 30, 2022, based on Worldometer elaboration of the latest United Nations data. This three datasets contain population data of China (2020 and historical), population forecast and population in major cities.
Link : https://www.worldometers.info/world-population/china-population/
Link : https://www.kaggle.com/anandhuh/datasets
If you find it useful, please support by upvoting ❤️
CREATE TABLE china_population (
"year" BIGINT,
"population" BIGINT,
"yearly_change" DOUBLE -- Yearly % Change,
"yearly_change_edbbdd" BIGINT -- Yearly Change,
"migrants_net" BIGINT -- Migrants (net),
"median_age" DOUBLE,
"fertility_rate" DOUBLE,
"density_p_km" BIGINT -- Density (P/Km²),
"urban_pop" DOUBLE -- Urban Pop %,
"urban_population" BIGINT,
"country_s_share_of_world_pop" DOUBLE -- Country\u0027s Share Of World Pop,
"world_population" BIGINT,
"china_global_rank" BIGINT
);
CREATE TABLE china_population_forecast (
"year" BIGINT,
"population" BIGINT,
"yearly_change" DOUBLE -- Yearly % Change,
"yearly_change_edbbdd" BIGINT -- Yearly Change,
"migrants_net" BIGINT -- Migrants (net),
"median_age" DOUBLE,
"fertility_rate" DOUBLE,
"density_p_km" BIGINT -- Density (P/Km²),
"urban_pop" DOUBLE -- Urban Pop %,
"urban_population" BIGINT,
"country_s_share_of_world_pop" DOUBLE -- Country\u0027s Share Of World Pop,
"world_population" BIGINT,
"china_global_rank" BIGINT
);
CREATE TABLE city_population_china (
"city_name" VARCHAR,
"population" BIGINT
);
Anyone who has the link will be able to view this.