This project explores the data in covid dataset by using variety of queries in SQL.
The visualization of few of the findings is uploaded on Tableau (link).
The Covid Dataset available on link.
-
SQL Server
-
SQL Server Management Studio
Highlights
- JOINs
- CTE
- Temperory Tables
- Windows Functions
- Aggregate Functions
- Creating Views
- Converting Data Types
What are the questions being answered?
- What is the country wise number of total cases and total deaths on each day reported?
- What is the country wise percentage of population which contracted covid on each day reported?
- Which are the countries with the highest infection rate with respect to the population?
- Which are the countries with highest death count with respect to the population?
- How much is the number of total cases, number of total deaths and percentages of death across the entire world on each date?
- How much of the total number of people in the world that have been vaccinated by that date?
- Analysis using joins
- Analysis using common table expression (CTE)
- Analysis using temporary tables
- Analysis using view