-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQL Data Exploration.sql
262 lines (210 loc) · 9.6 KB
/
SQL Data Exploration.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
-- Viewing the datasets
SELECT *
FROM PortfolioProject..Coviddeaths
ORDER BY 3,4;
SELECT *
FROM Portfolioproject..Covidvaccinations
ORDER BY 3,4;
-- Select data to be used for analysis
SELECT location, date, total_cases, new_cases, total_deaths, population
FROM PortfolioProject.dbo.Coviddeaths
ORDER BY 1,2;
-- Viewing Total Cases Vs Total Deaths
-- Shows likelihood of death if covid is contracted in the analyzed countries
SELECT location, date, total_cases, new_cases, total_deaths, (Total_deaths/total_cases)*100 AS "DeathPercentage"
FROM PortfolioProject.dbo.Coviddeaths
ORDER BY 1,2;
-- Exploring specific countries and continents
-- The DeathPercentage shows the likelihood of death if covid is contracted in these countries/continents
SELECT location, date, total_cases, new_cases, total_deaths, (Total_deaths/total_cases)*100 AS "DeathPercentage"
FROM PortfolioProject.dbo.Coviddeaths
WHERE location LIKE '%states%'
ORDER BY 1,2;
SELECT location, date, total_cases, new_cases, total_deaths, (Total_deaths/total_cases)*100 AS "DeathPercentage"
FROM PortfolioProject.dbo.Coviddeaths
WHERE location LIKE '%Africa%'
ORDER BY 1,2;
SELECT location, date, total_cases, new_cases, total_deaths, (Total_deaths/total_cases)*100 AS "DeathPercentage"
FROM PortfolioProject.dbo.Coviddeaths
WHERE location LIKE '%Nigeria%'
ORDER BY 1,2;
-- Total Cases Vs Population
-- Shows what percentage of the population contracted covid
SELECT location, date, total_cases, population, (Total_cases/population)*100 AS "InfectedPopulationPercentage"
FROM PortfolioProject.dbo.Coviddeaths
WHERE location LIKE '%Nigeria%'
ORDER BY 1,2;
-- Indicates countries with the highest infection rates in comparison with the population
SELECT location, population, MAX(total_cases) AS HighestInfectionCount, MAX((Total_cases/population))*100
AS "InfectedPopulationPercentage"
FROM PortfolioProject..Coviddeaths
WHERE location LIKE '%Nigeria%'
GROUP BY location, population
ORDER BY InfectedPopulationPercentage desc;
SELECT location, population, MAX(total_cases) AS HighestInfectionCount, MAX((Total_cases/population))*100
AS InfectedPopulationPercentage
FROM PortfolioProject..Coviddeaths
GROUP BY location, population
ORDER BY InfectedPopulationPercentage desc;
-- Showing Countries with Highest Death Count per Population
Select location, MAX(cast(Total_deaths as int)) as TotalDeathCount
From PortfolioProject..CovidDeaths
Where continent is not null
Group by Location
order by TotalDeathCount desc
-- Breaking things down by continent
-- Continents with the highest death count
Select continent, MAX(cast(Total_deaths as int)) as TotalDeathCount
From PortfolioProject..CovidDeaths
Where continent is not null
Group by continent
order by TotalDeathCount desc
-- WORKING WITH GLOBAL NUMBERS/COUNTS/FIGURES
Select SUM(new_cases) as total_cases, SUM(cast(new_deaths as int)) as total_deaths,
SUM(cast(new_deaths as int))/SUM(New_Cases)*100 as DeathPercentage
From PortfolioProject..CovidDeaths
where continent is not null
order by 1,2
-- This shows the death percentage to be 1.05% of the total_cases worldwide
-- Total Population vs Vaccinations
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null
order by 2,3
-- Taking a closer look into Africa as a continent
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null and dea.continent like '%Africa%'
order by 2,3
Select dea.continent,dea.new_cases,dea.location,dea.date, dea.population, vac.new_vaccinations
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null and dea.location like '%Nigeria%'
order by 3,4
Select dea.continent,dea.new_cases,dea.location,dea.date, dea.population, vac.new_vaccinations
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null and dea.location like '%Kingdom%'
order by 3,4
-- 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(CONVERT(bigint,vac.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVaccinated
--, (RollingPeopleVaccinated/population)*100
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..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
With PopvsVac (Continent, Location, Date, Population, New_Vaccinations, RollingPeopleVaccinated)
as
(
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(CONVERT(bigint,vac.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVaccinated
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null
)
Select *, (RollingPeopleVaccinated/Population)*100
From PopvsVac
With PopvsVac (Continent, Location, Date, Population, New_Vaccinations, RollingPeopleVaccinated)
as
(
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(CONVERT(bigint,vac.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVaccinated
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null and dea.continent like '%Africa%'
)
Select *, (RollingPeopleVaccinated/Population)*100
From PopvsVac
With PopvsVac (Continent, Location, Date, Population, New_Vaccinations, RollingPeopleVaccinated)
as
(
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(CONVERT(bigint,vac.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVaccinated
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null and dea.location like '%Nigeria%'
)
Select *, (RollingPeopleVaccinated/Population)*100
From PopvsVac
With PopvsVac (Continent, Location, Date, Population, New_Vaccinations, RollingPeopleVaccinated)
as
(
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(CONVERT(bigint,vac.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVaccinated
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null and dea.location like '%Kingdom%'
)
Select *, (RollingPeopleVaccinated/Population)*100
From PopvsVac
-- USING TEMP TABLE INSTEAD OF CTE
DROP Table if exists #PopulationVaccinatedPercentage
Create Table #PopulationVaccinatedPercentage
(
Continent nvarchar(255),
Location nvarchar(255),
Date datetime,
Population bigint,
New_vaccinations bigint,
RollingPeopleVaccinated bigint,
)
Insert into #PopulationVaccinatedPercentage
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(CONVERT(bigint,vac.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVaccinated
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
Select *, (RollingPeopleVaccinated/Population)*100
From #PopulationVaccinatedPercentage
-- Creating View to store data for visualizations
DROP View if exists PopulationVaccinatedPercentage
Create View PopulationVaccinatedPercentage as
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(CONVERT(bigint,vac.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVaccinated
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
SELECT * FROM PopulationVaccinatedPercentage
DROP VIEW PercentagevacUK
CREATE VIEW PercentagevacUK as
Select dea.continent,dea.new_cases,dea.location,dea.date, dea.population, vac.new_vaccinations
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null and dea.location like '%Kingdom%'
--order by 3,4
DROP VIEW PercentvacNig
CREATE VIEW PercentvacNig as
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(CONVERT(bigint,vac.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVaccinated
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null and dea.location like '%Nigeria%'
SELECT * FROM PercentvacNig