-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataExploration.sql
More file actions
71 lines (60 loc) · 2.84 KB
/
DataExploration.sql
File metadata and controls
71 lines (60 loc) · 2.84 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
-- Query to display the data we are starting with
SELECT Location, date, total_cases, new_cases, total_deaths, population
FROM githubproject.`ccovid-data`
Where continent is not null
order by 1,2 ;
-- Total Cases vs Total Deaths
-- Shows likelihood of dying if you contract covid in your country
Select Location, date, total_cases,total_deaths, (total_deaths/total_cases)*100 as DeathPercentage
FROM githubproject.`ccovid-data`
WHERE continent is not null
order by 1,2 ;
-- Total Cases vs Population
-- Shows what percentage of population infected with Covid
Select Location, date, Population, total_cases, (total_cases/population)*100 as PercentPopulationInfected
FROM githubproject.`ccovid-data`
order by 1,2;
-- Countries with Highest Infection Rate compared to Population
Select Location, Population, MAX(total_cases) as HighestInfectionCount, Max((total_cases/population))*100 as PercentPopulationInfected
FROM githubproject.`ccovid-data`
Group by Location, Population
order by PercentPopulationInfected desc ;
-- Countries with Highest Death Count per Population
SELECT Location, MAX(cast(Total_deaths as int)) as TotalDeathCount
FROM githubproject.`ccovid-data`
Where continent is not null
Group by Location
order by TotalDeathCount desc ;
-- Showing contintents with the highest death count per population
Select continent, MAX(cast(Total_deaths as int)) as TotalDeathCount
FROM githubproject.`ccovid-data`
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 DeathPercentage
FROM githubproject.`ccovid-data`
where continent is not null
--Group By date
order by 1,2;
-- Total Population vs Vaccinations
-- Shows Percentage of Population that has recieved at least one Covid Vaccine
Select death.continent, death.location, death.date, death.population, vacc.new_vaccinations
, SUM(CONVERT(int,vacc.new_vaccinations)) OVER (Partition by death.Location Order by death.location, death.Date) as RollingPeopleVaccinated
--, (RollingPeopleVaccinated/population)*100
From githubproject.`ccovid-data` AS death
Join githubproject.`vaccination` AS vacc
On death.location = vacc.location
and death.date = vacc.date
where continent is not null
order by 2,3;
-- Creating View to store data for later visualizations
Create View PercentPopulationVaccinated as
Select death.continent, death.location, death.date, death.population, vacc.new_vaccinations
, SUM(CONVERT(int,vacc.new_vaccinations)) OVER (Partition by death.Location Order by death.location, death.Date) as RollingPeopleVaccinated
--, (RollingPeopleVaccinated/population)*100
From githubproject.`ccovid-data` death
Join githubproject.`vaccination` vacc
On death.location = vacc.location
and death.date = vacc.date
where death.continent is not null