-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsql_data_exploration.sql
More file actions
177 lines (123 loc) · 4.87 KB
/
Copy pathsql_data_exploration.sql
File metadata and controls
177 lines (123 loc) · 4.87 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
Select *
From Portfolio1..CovidDeath
where continent is not null
order by 3,4
--Select *
--From Portfolio1..CovidVaccinations
--order by 3,4
-- Select data that we are going to be using
Select location,date,total_cases,new_cases,total_deaths,population
From Portfolio1..CovidDeath
where continent is not null
order by 1,2
--Looking into Total Cases vs Total Deaths
Select location,date,total_cases,total_deaths,(total_deaths/total_cases)*100 as DeathPercentage
From Portfolio1..CovidDeath
where location like '%states%'
and continent is not null
order by 1,2
--Looking into Total Cases vs Population
--shows what percentage of people affected by covid
Select location,date,total_cases,population,(total_cases/population)*100 as AffectedPercentage
From Portfolio1..CovidDeath
--where location like '%states%'
where continent is not null
order by 1,2
--Looking at Countries having Highest Infection Rate compared to Population
Select location,population,MAX(total_cases) as HighestInfectionRate,MAX((total_cases/population))*100 as AffectedPercentage
From Portfolio1..CovidDeath
--where location like '%states%'
where continent is not null
Group by location,population
order by AffectedPercentage desc
--Looking at Countries having Highest Death Count per Population
Select location,MAX(cast(total_deaths as int)) as HighestDeathRate
From Portfolio1..CovidDeath
--where location like '%states%'
where continent is not null
Group by location
order by HighestDeathRate desc
--Breaking based on Continents
--Showing Continnents with Highest Death Counts
Select location,MAX(cast(total_deaths as int)) as HighestDeathRate
From Portfolio1..CovidDeath
--where location like '%states%'
where continent is null
Group by location
order by HighestDeathRate desc
--Global Numbers
Select date,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 AffectedPercentage
From Portfolio1..CovidDeath
--where location like '%states%'
where continent is not null
Group by date
order by 1,2
--Global Death Rate
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 AffectedPercentage
From Portfolio1..CovidDeath
--where location like '%states%'
where continent is not null
--Group by date
order by 1,2
--Joining two tables
Select *
From Portfolio1..CovidDeath dea
join Portfolio1..CovidVaccinations vac
on dea.location=vac.location
and dea.date=vac.date
--Looking up Total Population vs New Vaccinations
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 rollingpeoplevaccinated
From Portfolio1..CovidDeath dea
join Portfolio1..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(CONVERT(int,vac.new_vaccinations)) OVER (Partition by dea.location Order by dea.location,dea.date) as rollingpeoplevaccinated
From Portfolio1..CovidDeath dea
join Portfolio1..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
--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(CONVERT(int,vac.new_vaccinations)) OVER (Partition by dea.location Order by dea.location,dea.date) as rollingpeoplevaccinated
From Portfolio1..CovidDeath dea
join Portfolio1..CovidVaccinations vac
on dea.location=vac.location
and dea.date=vac.date
--where dea.continent is not null
--Percentage of people vaccinated per population
Select *,(rollingpeoplevaccinated/population)*100
From #Percentpopulationvaccinated
--Create View to Store Data for Viaualizations
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 rollingpeoplevaccinated
From Portfolio1..CovidDeath dea
join Portfolio1..CovidVaccinations vac
on dea.location=vac.location
and dea.date=vac.date
where dea.continent is not null
select *
from Percentpopulationvaccinated