Welcome to my SQL portfolio! This repository showcases my work with SQLite through various projects, where Iβve applied fundamental and advanced SQL techniques to analyze data and derive insights. Below is a brief description of a few projects and the SQL techniques used. π
This SQL analysis explores inventory levels, pricing tiers, and customer satisfaction metrics in a fictional superstore. It simulates how SQL can be used to inform product restocking, pricing strategy, and sales insights.
- Aggregate Functions: Used
SUM()to calculate total stock available,MAX()andMIN()for analyzing product ratings and pricing, allowing insights into inventory and sales trends. - Filtering: Applied
WHEREclauses to isolate products needing replenishment based on stock quantity thresholds, helping to identify which products are understocked. - Ordering & Grouping: Utilized
ORDER BYandGROUP BYfor sorting data by price and product category, optimizing how data is viewed and interpreted.
This SQL project analyzes inventory levels for a bakery using basic filtering, sorting, and aggregation logic. It demonstrates how SQL can support daily retail operations through restocking reports and pricing audits.
- Data Insertion & Table Design: Employed
INSERT INTOfor populating the table and defined a table schema with proper data types to ensure integrity. - Aggregate Functions: Used
SUM()to get the total available stock across all baked goods, providing an overview of inventory levels. - Filtering & Sorting: Applied
WHEREandORDER BYto focus on specific products needing replenishment and to sort products by price, giving a clearer view of product availability. - Conditional Logic: Applied
CASEstatements to categorize products based on theirAttackandDefensevalues, enabling a dynamic way to classify product attributes.
This project is licensed under the MIT License - see the LICENSE file for details.
Feel free to explore the SQL queries and gain insights into how I approach data analysis using SQLite. Iβm continuously learning and excited to apply my skills in real-world data analysis and business decision-making contexts. π»β¨