Mass Shootings In United States (2018-2022)
List of Mass shootings in US
@kaggle.hemil26_mass_shootings_in_united_states_20182022
List of Mass shootings in US
@kaggle.hemil26_mass_shootings_in_united_states_20182022
CREATE TABLE shootings_2018 (
"date" TIMESTAMP,
"state" VARCHAR,
"dead" BIGINT,
"injured" BIGINT,
"total" BIGINT,
"description" VARCHAR
);
CREATE TABLE shootings_2019 (
"date" TIMESTAMP,
"state" VARCHAR,
"dead" BIGINT,
"injured" BIGINT,
"total" BIGINT,
"description" VARCHAR
);
CREATE TABLE shootings_2020 (
"date" TIMESTAMP,
"state" VARCHAR,
"dead" BIGINT,
"injured" BIGINT,
"total" BIGINT,
"description" VARCHAR
);
CREATE TABLE shootings_2021 (
"date" TIMESTAMP,
"state" VARCHAR,
"dead" BIGINT,
"injured" BIGINT,
"total" BIGINT,
"description" VARCHAR
);
CREATE TABLE shootings_2022 (
"date" TIMESTAMP,
"state" VARCHAR,
"dead" BIGINT,
"injured" BIGINT,
"total" BIGINT,
"description" VARCHAR
);
Anyone who has the link will be able to view this.