Los Angeles Crime Data 2020-2023
Official crime records from Los Angeles City
@kaggle.asaniczka_crimes_in_los_angeles_2020_2023
Official crime records from Los Angeles City
@kaggle.asaniczka_crimes_in_los_angeles_2020_2023
This dataset contains official crime records reported in Los Angeles City from January 2020 to December 2023.
The data provides valuable information about reported crimes, including the date, area, crime details, victim information, premises, weapons used, and status.
If you find this dataset valuable, don't forget to hit the upvote button! 😊💝
CREATE TABLE crime_data_from_2020_to_present (
"division_number" BIGINT,
"date_reported" TIMESTAMP,
"date_occurred" TIMESTAMP,
"area" BIGINT,
"area_name" VARCHAR,
"reporting_district" BIGINT,
"part" BIGINT,
"crime_code" BIGINT,
"crime_description" VARCHAR,
"modus_operandi" VARCHAR,
"victim_age" BIGINT,
"victim_sex" VARCHAR,
"victim_descent" VARCHAR,
"premise_code" DOUBLE,
"premise_description" VARCHAR,
"weapon_code" DOUBLE,
"weapon_description" VARCHAR,
"status" VARCHAR,
"status_description" VARCHAR,
"crime_code_1" DOUBLE,
"crime_code_2" DOUBLE,
"crime_code_3" DOUBLE,
"crime_code_4" DOUBLE,
"location" VARCHAR,
"cross_street" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE
);Anyone who has the link will be able to view this.