World Refugee Dataset
Countries of origin and destination of refugees for the year 2022
@kaggle.madhurpant_world_refugee_dataset
Countries of origin and destination of refugees for the year 2022
@kaggle.madhurpant_world_refugee_dataset
Origin: name of the country from which the refugees or asylum seekers originate.
applications_for_asylum: number of applications for asylum submitted by individuals from the respective origin country.
per_million_inhabitants: calculated by dividing the number of applications for asylum by the population of the origin country, then multiplying by one million.
Destination: name of the country where refugees are seeking asylum or refuge.
applications_for_asylum: number of applications for asylum submitted by individuals for the respective destination country.
per_million_inhabitants: calculated by dividing the number of applications for asylum received by the population of the destination country, then multiplying by one million.
CREATE TABLE refugee_destination (
"destination" VARCHAR,
"applications_for_asylum" BIGINT,
"per_million_inhabitants" BIGINT
);CREATE TABLE refugee_origin (
"origin" VARCHAR,
"applications_for_asylum" BIGINT,
"per_million_inhabitants" BIGINT
);Anyone who has the link will be able to view this.