-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCovid_data_explore.sql
270 lines (221 loc) · 7.78 KB
/
Covid_data_explore.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
create table CovidDeaths(
iso_code varchar(20),
continent varchar(20),
location varchar(50),
date varchar(20),
population float,
total_cases int,
new_cases int,
new_cases_smoothed FLOAT,
total_deaths int,
new_deaths int,
new_deaths_smoothed FLOAT,
total_cases_per_million FLOAT,
new_cases_per_million FLOAT,
new_cases_smoothed_per_million FLOAT,
total_deaths_per_million FLOAT,
new_deaths_per_million float,
new_deaths_smoothed_per_million float,
reproduction_rate float,
icu_patients int,
icu_patients_per_million float,
hosp_patients int,
hosp_patients_per_million float,
weekly_icu_admissions float,
weekly_icu_admissions_per_million float,
weekly_hosp_admissions float,
weekly_hosp_admissions_per_million float);
drop table CovidDeaths;
create table CovidVaccinations(
iso_code varchar(20),
continent varchar(20),
location varchar(50),
date varchar(20),
new_tests int,
total_tests int,
total_tests_per_thousand float,
new_tests_per_thousand float,
new_tests_smoothed int,
new_tests_smoothed_per_thousand float,
positive_rate float,
tests_per_case float,
tests_units varchar(50),
total_vaccinations int,
people_vaccinated int,
people_fully_vaccinated int,
new_vaccinations int,
new_vaccinations_smoothed int,
total_vaccinations_per_hundred float,
people_vaccinated_per_hundred float,
people_fully_vaccinated_per_hundred float,
new_vaccinations_smoothed_per_million int,
stringency_index float,
population_density float,
median_age float,
aged_65_older float,
aged_70_older float,
gdp_per_capita float,
extreme_poverty float,
cardiovasc_death_rate float,
diabetes_prevalence float,
female_smokers float,
male_smokers float,
handwashing_facilities float,
hospital_beds_per_thousand float,
life_expectancy float,
human_development_index float);
drop table CovidVaccinations;
show datestyle;
select * from CovidDeaths;
select * from CovidVaccinations;
ALTER TABLE CovidDeaths ALTER COLUMN date TYPE DATE
using to_date(date, 'DD/MM/YYYY');
ALTER TABLE CovidVaccinations ALTER COLUMN date TYPE DATE
using to_date(date, 'DD/MM/YYYY');
Select *
From CovidDeaths
Where continent is not null
order by 3,4;
-- Select Data that we are going to be using
Select Location, date, total_cases, new_cases, total_deaths, population
From CovidDeaths
Where continent is not null
order by 1,2;
-- Total Cases vs Total Deaths
-- by which we can identify the likelihood of dying if you contract covid in your country
Select Location, date, total_cases,total_deaths, (total_deaths/total_cases)*100 as DeathPercentage
From CovidDeaths
Where location like '%India%'
and continent is not null
order by 1,2;
Select Location, date, Population, total_cases, (total_deaths/total_cases)*100 as DeathPercentage
From CovidDeaths
order by 1,2;
Select f.Location, f.Population, t.max_cases, t.max_deaths
from(
select Location, max(total_cases) as max_cases, max(total_deaths) as max_deaths
from CovidDeaths
group by Location
) t join CovidDeaths f on f.Location = t.Location and t.max_cases = f.total_cases and t.max_deaths = f.total_deaths;
select Location, max(Population) as population, max(total_cases) as cases, max(total_deaths) as deaths
from CovidDeaths
group by Location
order by 1;
select Location, population, cases, deaths, (deaths*100/cases) as DeathPercentage
from (
select Location, max(Population) as population, max(total_cases) as cases, max(total_deaths) as deaths
from CovidDeaths
group by Location
)
order by 1;
--Find the top 10 countries with the highest Covid-19 death rates:
SELECT location, MAX(total_deaths) AS max_deaths
FROM CovidDeaths
WHERE total_deaths is not null
GROUP BY location
ORDER BY max_deaths DESC
LIMIT 10;
--Analyze daily new cases trend:
SELECT date, SUM(new_cases) AS daily_cases
FROM CovidDeaths
WHERE new_cases is not null
GROUP BY date
ORDER BY date;
--Calculate vaccination rate by country:
Select * from CovidVaccinations;
select * from CovidDeaths;
SELECT dea.location, MAX(vac.people_vaccinated)/dea.Population AS vaccination_rate
FROM CovidVaccinations vac
Join CovidDeaths dea
on dea.location = vac.location
WHERE dea.population IS NOT NULL and vac.people_vaccinated is not null
GROUP BY dea.location, dea.population
ORDER BY vaccination_rate DESC;
-- Countries with Highest Infection Rate compared to Population
Select Location, Population, MAX(total_cases) as HighestInfectionCount, Max((total_cases/population))*100 as PercentPopulationInfected
From CovidDeaths
--Where location like '%states%'
Group by Location, Population
order by PercentPopulationInfected desc;
-- Countries with Highest Death Count per Population
Select Location, MAX(cast(Total_deaths as int)) as TotalDeathCount
From CovidDeaths
--Where location like '%states%'
Where continent is not null and Total_deaths is not null
Group by Location
order by TotalDeathCount desc;
-- BREAKING THINGS DOWN BY CONTINENT
-- Showing contintents with the highest death count per population
Select continent, MAX(cast(Total_deaths as int)) as TotalDeathCount
From CovidDeaths
--Where location like '%states%'
Where continent is not null
Group by continent
order by TotalDeathCount desc;
-- GLOBAL NUMBERS
Select SUM(new_cases) as total_cases, SUM(cast(new_deaths as int)) as total_deaths, SUM(cast(new_deaths as float))/SUM(New_Cases)*100 as DeathPercentage
From CovidDeaths
--Where location like '%India%'
where continent is not null
--Group By date
order by 1,2;
-- Total Population vs Vaccinations
-- Shows Percentage of Population that has recieved at least one Covid Vaccine
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(cast(vac.new_vaccinations as int)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVaccinated
--, (RollingPeopleVaccinated/population)*100
From CovidDeaths dea
Join CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null
order by 2,3;
-- Using CTE to perform Calculation on Partition By in previous query
With PopvsVac (Continent, Location, Date, Population, New_Vaccinations, RollingPeopleVaccinated)
as
(
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(CAST(vac.new_vaccinations as int)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVaccinated
--, (RollingPeopleVaccinated/population)*100
From CovidDeaths dea
Join CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null
--order by 2,3
)
Select *, (RollingPeopleVaccinated/Population)*100
From PopvsVac;
-- Using Temp Table to perform Calculation on Partition By in previous query
DROP Table if exists PercentPopulationVaccinated;
Create Table PercentPopulationVaccinated
(
Continent varchar(255),
Location varchar(255),
Date date,
Population float,
New_vaccinations float,
RollingPeopleVaccinated float
);
Insert into PercentPopulationVaccinated
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(CAST(vac.new_vaccinations as int)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVaccinated
--, (RollingPeopleVaccinated/population)*100
From CovidDeaths dea
Join CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date;
--where dea.continent is not null
--order by 2,3
Select *, (RollingPeopleVaccinated/Population)*100 as RecentVaccinatedPerc
From PercentPopulationVaccinated;
-- Creating View to store data for later visualizations
Create View PercentPopulationVaccinated2 as
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(CAST(vac.new_vaccinations as int)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVaccinated
--, (RollingPeopleVaccinated/population)*100
From CovidDeaths dea
Join CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null;