1SELECT
2 "year",
3 COUNT("case") AS total_cases
4FROM
5 @kaggle.ibriiee_tesla_autonomous_deaths_data_updated_2023.tesla_deaths_deaths
6WHERE
7 "year" IS NOT NULL
8 AND "year" BETWEEN 2013 AND 2023
9GROUP BY
10 "year"
11ORDER BY
12 "year" ASC
13
14
15