Singapore Resident Dataset
The data contains Population by ethnicity, age and gender for Singapore resident
@kaggle.mohitmaithani_singapore_resident_dataset
The data contains Population by ethnicity, age and gender for Singapore resident
@kaggle.mohitmaithani_singapore_resident_dataset
Data from 1957 onwards pertain to resident population.
The data contains Population by ethnicity, age and gender for the country of Singapore from the year 1957 to 2018.
CREATE TABLE cleaned_extended_datsaset (
"year" BIGINT,
"ethnicity_group" VARCHAR,
"gender" VARCHAR,
"age" VARCHAR,
"population" BIGINT
);
CREATE TABLE dataonly_null_removed_from_population (
"column" BIGINT,
"year" BIGINT,
"ethnicity" VARCHAR,
"age" VARCHAR,
"population" BIGINT
);
CREATE TABLE raw (
"unnamed_0" BIGINT -- Unnamed: 0,
"year" BIGINT,
"ethnicity" VARCHAR,
"age" VARCHAR,
"population" VARCHAR
);
Anyone who has the link will be able to view this.