This project uses SQL to analyze a COVID-19 dataset and identify trends related to symptom severity, age-based risk, and COVID positivity rates. The goal is to demonstrate SQL querying skills using a healthcare-related dataset.
- Publicly available COVID dataset
- Each row represents an individual patient record
- Age
- Fever (Β°F)
- Cough (Mild / Strong)
- Has_Covid (Yes / No)
- City
- SQL (MySQL / PostgreSQL / SQLite)
- Git & GitHub
- Percentage of COVID-positive patients with fever β₯ 101Β°F
- Comparison of positivity rates between high-risk and low-risk patients
- Age group analysis by decade
- City-wise COVID-positive case distribution
- Symptom severity impact on COVID positivity
-- Identify high-risk patients
SELECT COUNT(*)
FROM covid_dataset
WHERE Age >= 60
AND Fever >= 101
AND Cough = 'Strong';