Skip to content

Rammeshgar/MySQL-Power_BI

Repository files navigation

MySQL and Power BI Integration Project.

Overview

This project aims to integrate Awesome chocolates data from MySQL database into Power BI for insightful visualizations and analysis.

Awesome chocolates.pdf

Screenshot Awesome chocolates

MySQL Data Extraction

To find shipments where amounts are greater than 100 and less than 2000 for each salesperson in 2022

{select p.Salesperson, Amount, SaleDate, Boxes, month(SaleDate) as 'Month' from sales s left join people p on p.SPID=s.SPID where year(SaleDate) = 2022 and Amount between 100 and 2000;}

To determine how many times you shipped more than 1,000 boxes each month

{select year(SaleDate) Year, month(SaleDate) Month, count(*) as Above1000 from sales where Boxes>=1000 group by year(SaleDate), month(SaleDate) order by Year, Month desc;}

To calculate the total shipments for each salesperson in January 2022

{select Amount, SaleDate, Boxes, month(SaleDate) as 'Month' from sales where year(SaleDate) = 2022 and month(SaleDate)=1;}

Visualization

Designed a meaningful and easy to understand visualizations using Power BI’s drag-and-drop interface.

Created interactive charts, graphs, and table to represent the insights from The data.

About

ETL and Dashboard by MySQL + Power BI

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published