Skip to content

Andreus33/Western-Digital-Clone-Database

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Western-Digital-Clone-Database

SQL database design and analytics project for Western Digital inventory and operations.

Dashboards Created

Invoice Revenue Dashboard

  • Monthly revenue trends
  • Invoice status breakdown
  • Total revenue calculation

Expense Tracking Dashboard

  • Monthly expenses
  • Employee expense tracking
  • Total expense summary

Financial Health Dashboard

  • Revenue vs Expenses
  • Profit calculation

Sample SQL Query

Example query used to calculate total department expenses:

SELECT d.name AS department,
       SUM(ex.amount) AS total_expenses
FROM expense ex
JOIN employee e ON ex.employee_id = e.employee_id
JOIN department d ON e.department_id = d.department_id
GROUP BY d.name;

About

SQL database design and analytics project for Western Digital inventory and operations.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors