-
Notifications
You must be signed in to change notification settings - Fork 0
/
SQL_EDA_Project.sql
158 lines (124 loc) · 4.74 KB
/
SQL_EDA_Project.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
--SELECT *
--From SqlProject.dbo.CovidDeathsTrun$
--order by 3, 4
--SELECT *
--FROM SqlProject.dbo.CovidVaccinations$
--order by 3, 4
--Selecting Data we'll be using
--SELECT location, date, total_cases, new_cases, total_deaths, population
--FROM SqlProject..CovidDeathsTrun$
--order by 1, 2
-- Total Deaths vs Total Cases
SELECT location, date,
total_cases,
total_deaths,
(total_deaths/total_cases)*100 as DeathPcnt -- Create new column
FROM SqlProject..CovidDeathsTrun$
WHERE location like '%canada%'
order by 1,2
-- Total Deaths vs Population - Percentage of population who have contracted Covid
SELECT location, date,
population, total_deaths,
(total_deaths/population)*100 as DeathPopPcnt -- Create another column
FROM SqlProject..CovidDeathsTrun$
WHERE location like '%canada%'
order by 1,2
-- Looking at countries with highest infection rate compared to population
SELECT location, population,
max(total_cases) as HighestInfecRate, --New column for highest count of infections
MAX((total_cases/population))*100 as PercentInfected -- Column for percentage
FROM SqlProject..CovidDeathsTrun$
group by location, population
order by PercentInfected DESC
-- Highest Death Count by population
SELECT location, max(cast(total_deaths as int)) as TotalDeathCount
FROM SqlProject.dbo.CovidDeathsTrun$
WHERE continent is not null
GROUP BY location
ORDER BY TotalDeathCount DESC
-- Percentage
SELECT location,
MAX(cast(total_deaths as int)) as HighestDeathRate,
MAX(total_deaths/population)*100 as MaxDeathPct
FROM SqlProject..CovidDeathsTrun$
--WHERE continent is not null
GROUP BY location
ORDER BY MaxDeathPct DESC
-- By Continent
-- Highest Death Count by continent
SELECT location, max(cast(total_deaths as int)) as TotalDeathCount
FROM SqlProject.dbo.CovidDeathsTrun$
WHERE continent is null
GROUP BY location
ORDER BY TotalDeathCount DESC
--Global Numbers
SELECT SUM(cast(new_cases as int)) as total_cases,
SUM(cast(new_deaths as int)) as total_deaths,
SUM(cast(new_deaths as int)) / SUM(new_cases)*100 as DeathPcnt -- Create new column
FROM SqlProject..CovidDeathsTrun$
--WHERE location like '%canada%
WHERE continent is not null
--GROUP BY date
order by 1,2
-- Joining tables
Select dea.continent, dea.location,
dea.date, dea.population,
vac.new_vaccinations,
SUM(CONVERT(int,vac.new_vaccinations)) OVER (partition by dea.location
ORDER BY dea.location, dea.date) as RollingVaccination
FROM SqlProject..CovidDeathsTrun$ dea
JOIN SqlProject..CovidVaccinations$_xlnm#_FilterDatabase vac
on dea.location = vac.location
and dea.date = vac.date
WHERE dea.continent is not null
ORDER BY 2,3
WITH PopvsVac (continent, location, date, population, new_vaccinations, RollingVaccination)
as
(
Select dea.continent, dea.location,
dea.date, dea.population,
vac.new_vaccinations,
SUM(CONVERT(int,vac.new_vaccinations)) OVER (partition by dea.location ORDER BY dea.location, dea.date) as RollingVaccination
FROM SqlProject..CovidDeathsTrun$ dea
JOIN SqlProject..CovidVaccinations$_xlnm#_FilterDatabase vac
on dea.location = vac.location
and dea.date = vac.date
WHERE dea.continent is not null
--ORDER BY 2,3
)
SELECT *, (RollingVaccination/population)*100 as PercentPopulationVaccinated
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,
PercentPopulationVaccinated numeric
)
Insert into #PercentPopulationVaccinated
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(CONVERT(int,vac.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingVaccinations
--, (RollingPeopleVaccinated/population)*100
From SqlProject..CovidDeathsTrun$ dea
Join SqlProject..CovidVaccinations$_xlnm#_FilterDatabase vac
On dea.location = vac.location
and dea.date = vac.date
--where dea.continent is not null
--order by 2,3
Select *, (RollingVaccinations/Population)*100
From #PercentPopulationVaccinated
CREATE view PercentPopulationVaccinated as
Select dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations
, SUM(CONVERT(int,vac.new_vaccinations)) OVER (Partition by dea.Location Order by dea.location, dea.Date) as RollingVaccinations
--, (RollingPeopleVaccinated/population)*100
From SqlProject..CovidDeathsTrun$ dea
Join SqlProject..CovidVaccinations$_xlnm#_FilterDatabase vac
On dea.location = vac.location
and dea.date = vac.date
where dea.continent is not null
--order by 2,3
SELECT * FROM PercentPopulationVaccinated