Baselight
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
yeartotal_cases
20132
20144
20155
201615
201711
201818
201946
202039
202158
202295

Share link

Anyone who has the link will be able to view this.