Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nafisalawalidris/international-breweries

This GitHub readme provides an overview of data analysis using SQL on the International Breweries dataset, including dataset description, analysis questions, example SQL queries, and key insights derived from the analysis.
https://github.com/nafisalawalidris/international-breweries

data-analysis insights international-breweries-dataset queries sql

Last synced: 8 days ago
JSON representation

This GitHub readme provides an overview of data analysis using SQL on the International Breweries dataset, including dataset description, analysis questions, example SQL queries, and key insights derived from the analysis.

Awesome Lists containing this project

README

        

Data Analysis using SQL - International Breweries Dataset



This repository contains SQL queries and analysis performed on the International Breweries dataset. The dataset consists of information related to sales, brands, regions and sales representatives.



Dataset Description



The International Breweries dataset includes the following columns:




  • SALES_REP: The name of the sales representative

  • BRANDS: The brand of the product

  • QUANTITY: The quantity of products sold

  • COSTS: The cost of the products

  • REGION: The region where the sales occurred

  • YEAR: The year of the sales



Analysis Questions




  1. What are the total sales made by each sales representative?

  2. Which brand had the highest sales in each year?

  3. Which region recorded the highest quantity of goods in each quarter?

  4. What is the average cost of products sold in each year?



SQL Queries



Here are some example SQL queries used for data analysis:





SELECT SALES_REP, SUM(QUANTITY) AS TOTAL_SALES
FROM breweries
GROUP BY SALES_REP;

SELECT YEAR, BRANDS, MAX(QUANTITY) AS HIGHEST_SALES
FROM breweries
GROUP BY YEAR;

SELECT YEAR, QUARTER, REGION, MAX(QUANTITY) AS HIGHEST_QUANTITY
FROM breweries
GROUP BY YEAR, QUARTER;

SELECT YEAR, AVG(COSTS) AS AVERAGE_COST
FROM breweries
GROUP BY YEAR;



Conclusion



Through SQL analysis on the International Breweries dataset, we can gain insights into sales performance, popular brands, regional trends, and cost analysis. These insights can help inform decision-making and drive business growth.