-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCovid19_Analysis.sql
More file actions
128 lines (104 loc) · 4.88 KB
/
Covid19_Analysis.sql
File metadata and controls
128 lines (104 loc) · 4.88 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
--COVID-19 ANALYSIS
-- Viewing daily COVID-19 cases and deaths by location with population context
Select location, date, total_cases, new_cases, total_deaths, population
From [Portfolio Project 2]..CovidDeaths
order by 1,2
--Looking at Total Cases vs Total Deaths for Poland
Select location, date, total_cases, total_deaths, (total_deaths/total_cases)*100 as DeathPercentage
From [Portfolio Project 2]..CovidDeaths
Where location like '%Poland%'
order by 1,2
-- Tracking COVID-19 death percentage by country over time
Select location, date, total_cases, total_deaths, (total_deaths/total_cases)*100 as DeathPercentage
From [Portfolio Project 2]..CovidDeaths
Where continent is not null
order by 1,2
-- Showing COVID-19 infection percentages over time for all locations
Select location, date, total_cases, population, (total_cases/population)*100 as PercentPopulationInfected
From [Portfolio Project 2]..CovidDeaths
Where continent is not null
Order by 1,2
--Looking at Countries with Highest Infection Rate compared to Population
Select location, population, MAX(total_cases) as HighestInfectionCount, MAX(total_cases/population)*100 as PercentPopulationInfected
From [Portfolio Project 2]..CovidDeaths
Group by location, population
Order by 4 DESC
--Showing countries with Highest Death Count per Population
Select location, MAX(cast(total_deaths as int)) as TotalDeathCount
From [Portfolio Project 2]..CovidDeaths
Where continent is not null
Group by location
Order by 2 DESC
--Showing continet with Highest Death Count per Population
Select continent, MAX(cast(total_deaths as int)) as TotalDeathCount
From [Portfolio Project 2]..CovidDeaths
Where continent is not null
Group by continent
Order by 2 DESC
--GLOBAL NUMBERS
-- Showing daily global totals of COVID-19 cases, deaths, and death percentage over time
Select date, SUM(new_cases) as total_cases, SUM(cast(new_deaths as int)) as total_cases, SUM(cast(new_deaths as int))/SUM(New_Cases)*100 as DeathPercentage
From [Portfolio Project 2]..CovidDeaths
Where continent is not null
Group by date
Order by 1
-- Calculating global total cases, total deaths, and overall COVID-19 death percentage
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 [Portfolio Project 2]..CovidDeaths
Where continent is not null
Order by 1
-- Tracking daily and cumulative COVID-19 vaccinations per country over time
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
From [Portfolio Project 2]..CovidDeaths dea
Join [Portfolio Project 2]..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
Where dea.continent is not null
Order by 2,3
--USE CTE
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
From [Portfolio Project 2]..CovidDeaths dea
Join [Portfolio Project 2]..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
Where dea.continent is not null
)
Select *, (RollingPeopleVaccinated/population)*100 as VaccinatedPercentage
From PopvsVac
--USING TEMP TABLE
DROP Table if exists #PercentPopulationVaccinated
Create Table #PercentPopulationVaccinated
(
Continent nvarchar(255),
Location nvarchar(255),
Date datetime,
Population numeric,
New_vaccinations numeric,
RollingPeopleVaccinated numeric
)
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
From [Portfolio Project 2]..CovidDeaths dea
Join [Portfolio Project 2]..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
Where dea.continent is not null
Select *, (RollingPeopleVaccinated/Population)*100
From #PercentPopulationVaccinated
--Creating Views - PercentagePopulationVaccinated view
Create View PercentagePopulationVaccinated 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
From [Portfolio Project 2]..CovidDeaths dea
Join [Portfolio Project 2]..CovidVaccinations vac
On dea.location = vac.location
and dea.date = vac.date
Where dea.continent is not null
--View ContinentDeathCount
Create View ContinentDeathCount as
Select continent, MAX(cast(total_deaths as int)) as TotalDeathCount
From [Portfolio Project 2]..CovidDeaths
Where continent is not null
Group by continent