French National Assembly Open Data
All the data to analyse the french national assembly between 2017 and 2021
@kaggle.maxlutz09_french_national_assembly_open_data
All the data to analyse the french national assembly between 2017 and 2021
@kaggle.maxlutz09_french_national_assembly_open_data
CREATE TABLE df_deputies (
"code" VARCHAR,
"sex" VARCHAR,
"family_name" VARCHAR,
"first_name" VARCHAR,
"date_of_birth" TIMESTAMP,
"activity" VARCHAR,
"pol_party" VARCHAR,
"dep" VARCHAR,
"num_dep" VARCHAR,
"circo" BIGINT
);
CREATE TABLE df_deputies_missions (
"code_organe" VARCHAR,
"code_deputy" VARCHAR
);
CREATE TABLE df_organs (
"code" VARCHAR,
"type" VARCHAR,
"name" VARCHAR,
"abreviated_name" VARCHAR
);
CREATE TABLE df_political_parties (
"code" VARCHAR,
"name" VARCHAR,
"abreviated_name" VARCHAR,
"members" BIGINT,
"color" VARCHAR
);
CREATE TABLE df_vote_description (
"code" VARCHAR,
"date" TIMESTAMP,
"type" VARCHAR,
"titre" VARCHAR,
"demandeur" VARCHAR,
"nb_votants" BIGINT,
"requis" BIGINT,
"non_votants" BIGINT,
"pour" BIGINT,
"contre" BIGINT,
"abstentions" BIGINT,
"demandeur_rep" BIGINT,
"demandeur_larem" BIGINT,
"demandeur_fi" BIGINT,
"demandeur_ps" BIGINT,
"demandeur_eelv" BIGINT,
"demandeur_modem" BIGINT,
"demandeur_nd" BIGINT,
"demandeur_rps" BIGINT,
"demandeur_udrl" BIGINT,
"demandeur_pcf" BIGINT,
"demandeur_cdp" BIGINT,
"demandeur_gov" BIGINT,
"demandeur_com_spe" BIGINT
);
CREATE TABLE df_votes (
"scrutin" VARCHAR,
"deputy_code" VARCHAR,
"pour" BIGINT,
"contre" BIGINT,
"non_votants" BIGINT,
"abstentions" BIGINT,
"cause" VARCHAR,
"par_delegation" BIGINT
);
Anyone who has the link will be able to view this.