US Election 2020
Race to Presidential Election 2020 by County
@kaggle.unanimad_us_election_2020
Race to Presidential Election 2020 by County
@kaggle.unanimad_us_election_2020
Please, If you enjoyed this dataset, don't forget to upvote it.
For this year, was the 59th quadrennial presidential election held on Tuesday, November 3, 2020. To win the election, the candidate needs 270 out of 538 electoral votes. A good sign, that show if a candidate is doing well, is if they win states that aren't expcted to go their way.
This dataset contains county-level data from 2020 US Election.
CREATE TABLE governors_county (
"state" VARCHAR,
"county" VARCHAR,
"current_votes" BIGINT,
"total_votes" BIGINT,
"percent" BIGINT
);CREATE TABLE governors_county_candidate (
"state" VARCHAR,
"county" VARCHAR,
"candidate" VARCHAR,
"party" VARCHAR,
"votes" BIGINT,
"won" BOOLEAN
);CREATE TABLE governors_state (
"state" VARCHAR,
"votes" BIGINT
);CREATE TABLE house_candidate (
"district" VARCHAR,
"candidate" VARCHAR,
"party" VARCHAR,
"total_votes" BIGINT,
"won" BOOLEAN
);CREATE TABLE house_state (
"district" VARCHAR,
"current_votes" BIGINT,
"total_votes" BIGINT,
"percent" BIGINT
);CREATE TABLE president_county (
"state" VARCHAR,
"county" VARCHAR,
"current_votes" BIGINT,
"total_votes" BIGINT,
"percent" BIGINT
);CREATE TABLE president_county_candidate (
"state" VARCHAR,
"county" VARCHAR,
"candidate" VARCHAR,
"party" VARCHAR,
"total_votes" BIGINT,
"won" BOOLEAN
);CREATE TABLE president_state (
"state" VARCHAR,
"total_votes" BIGINT
);CREATE TABLE senate_county (
"state" VARCHAR,
"county" VARCHAR,
"current_votes" BIGINT,
"total_votes" BIGINT,
"percent" BIGINT
);CREATE TABLE senate_county_candidate (
"state" VARCHAR,
"county" VARCHAR,
"candidate" VARCHAR,
"party" VARCHAR,
"total_votes" BIGINT
);CREATE TABLE senate_state (
"state" VARCHAR,
"total_votes" BIGINT
);Anyone who has the link will be able to view this.