Clement Airiohuodion

Logo

Welcome to My Page

View the Project on GitHub clembrain/Advanced_Database_Project

Advanced_Database_Project

🧠 Advanced SQL & Database Projects

By: Airiohuodion Clement | MSc Data Science

🗕️ Date: 2024

This portfolio showcases two comprehensive projects using Advanced SQL for data querying, wrangling, transformation, and reporting. Each project reflects practical applications of relational databases, designed to demonstrate robust database skills for solving real-world problems using PostgreSQL and Microsoft SQL Server.


🗂️ Project 1: Staff Management and HR Data Reporting

🔎 Overview:

This project simulates a relational HR database system comprising multiple tables (e.g., staff, department, roles, grade level). Advanced SQL was used to extract operational and strategic insights, such as workforce distribution, salary forecasting, and departmental staff breakdowns.

🛠️ Tools & Technologies:

📌 Key Tasks:

📸 Suggested Screenshots (Place in /Photo/StaffManagement/)

✅ Sample Output (SQL Logic Abstracted):

SELECT d.name AS department, COUNT(s.id) AS total_staff,
       SUM(s.salary) AS total_salary
FROM staff s
JOIN department d ON s.dept_id = d.id
GROUP BY d.name
HAVING COUNT(s.id) > 3
ORDER BY total_salary DESC;

🌟 Outcomes:


🗂️ Project 2: Public Health - Disease and Immunization Tracking Database

🔎 Overview:

This project used SQL to explore disease surveillance and immunization data stored across multiple relational tables. Queries were developed to identify at-risk populations, summarize immunization coverage, and analyze gender-based disease distributions.

🛠️ Tools & Technologies:

📌 Key Tasks:

📸 Suggested Screenshots (Place in /Photo/PublicHealth/)

✅ Sample Output (SQL Logic Abstracted):

SELECT l.lga_name, COUNT(d.disease_id) AS disease_cases
FROM disease_cases d
JOIN lga l ON d.lga_id = l.id
WHERE d.year = 2023
GROUP BY l.lga_name;

🌟 Outcomes:


🧂 Skills Demonstrated


📦 Folder Structure

/Advanced_SQL_Projects/
|
├── README.md
├── /Photo/
│   ├── StaffManagement/
│   │   ├── salary_case_query.png
│   │   ├── staff_by_dept.png
│   └── PublicHealth/
│       ├── disease_by_lga.png
│       ├── immunization_report.png

🔗 Repository Access

📁 GitHub Repo: Your GitHub Link Here 🖼️ All screenshots saved in /Photo/ subfolders


✅ Summary

These SQL projects demonstrate: