-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPortfolioProject_Covid_19_Data_Exploration.sql
More file actions
159 lines (114 loc) · 5 KB
/
PortfolioProject_Covid_19_Data_Exploration.sql
File metadata and controls
159 lines (114 loc) · 5 KB
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
/*
Covid 19 Data Exploration
Skills used in this project: Aggregate Functions, Joins, Converting Data Types, Window Functions, CTE's, Temp Tables, Creating Views
*/
Select *
From PortfolioProject..CovidDeaths
Where continent is not null
order by 3,4
-- Initial Data Selection from CovidDeaths Table
Select Location, date, total_cases, new_cases, total_deaths, population
From PortfolioProject..CovidDeaths
Where continent is not null
order by 1,2
-- Total Cases vs Total Deaths
-- Query showing the likelihood of dying if you contract covid in your country
Select Location, date, total_cases,total_deaths, (total_deaths/total_cases)*100 as DeathPercent
From PortfolioProject..CovidDeaths
Where location like '%states%'
and continent is not null
order by 1,2
-- Total Cases vs Population
-- Query showing the percentage of the population that has been infected with Covid-19
Select Location, date, Population, total_cases, (total_cases/population)*100 as PercentOfPopInfected
From PortfolioProject..CovidDeaths
--Where location like '%states%'
order by 1,2
-- Query showing countries with highest infection rate compared to Population
Select Location, Population, MAX(total_cases) as MaxInfectionCount, Max((total_cases/population))*100 as PercentOfPopInfected
From PortfolioProject..CovidDeaths
--Where location like '%states%'
Group by Location, Population
order by PercentOfPopInfected desc
-- Query showing countries with Highest Death Count per Population
Select Location, MAX(cast(Total_deaths as int)) as totaldeathCount
From PortfolioProject..CovidDeaths
--Where location like '%states%'
Where continent is not null
Group by Location
order by totaldeathCount desc
-- CONTINENTAL QUERIES
-- Query Showing contintents with the highest death count per population
Select continent, MAX(cast(Total_deaths as int)) as totaldeathCount
From PortfolioProject..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 int))/SUM(new_cases)*100 as Death_Percent_Conti
From PortfolioProject..CovidDeaths
--Where location like '%states%'
where continent is not null
--Group By date
order by 1,2
-- Total Population vs Vaccinations
-- Query showing the percentage of the population that has received at least one dose of the Covid vaccine.
Select dea.continent, dea.location, dea.date, dea.population, vacc.new_vaccinations
, SUM(CONVERT(int,vacc.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVacc
--, (RollingPeopleVacc/population)*100
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vacc
On dea.location = vacc.location
and dea.date = vacc.date
where dea.continent is not null
order by 2,3
-- Using CTE to perform Calculation on Partition By in previous query
With PopvsVacc (Continent, Location, Date, Population, New_Vaccinations, RollingPeopleVacc)
as
(
Select dea.continent, dea.location, dea.date, dea.population, vacc.new_vaccinations
, SUM(CONVERT(int,vacc.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVacc
--, (RollingPeopleVacc/population)*100
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vacc
On dea.location = vacc.location
and dea.date = vacc.date
where dea.continent is not null
--order by 2,3
)
Select *, (RollingPeopleVacc/Population)*100
From PopvsVacc
-- Using Temp Table to perform Calculation on Partition By in previous query
DROP Table if exists #PercentPopulationVacc
Create Table #PercentPopulationVacc
(
Continent nvarchar(255),
Location nvarchar(255),
Date datetime,
Population numeric,
New_vaccinations numeric,
RollingPeopleVacc numeric
)
Insert into #PercentPopulationVacc
Select dea.continent, dea.location, dea.date, dea.population, vacc.new_vaccinations
, SUM(CONVERT(int,vacc.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVacc
--, (RollingPeopleVacc/population)*100
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vacc
On dea.location = vacc.location
and dea.date = vacc.date
--where dea.continent is not null
--order by 2,3
Select *, (RollingPeopleVacc/Population)*100
From #PercentPopulationVacc
-- Creating a View to store data for further visualizations
Create View PercentPopulationVacc as
Select dea.continent, dea.location, dea.date, dea.population, vacc.new_vaccinations
, SUM(CONVERT(int,vacc.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingPeopleVacc
--, (RollingPeopleVacc/population)*100
From PortfolioProject..CovidDeaths dea
Join PortfolioProject..CovidVaccinations vacc
On dea.location = vacc.location
and dea.date = vacc.date
where dea.continent is not null