I Analyzed sales data from an e-commerce business to gain insights into customer behavior, identify top-selling products, evaluate sales performance, and make data-driven recommendations.
In this project I analyze sales Insights data from sql database. And this project I used some sql function for analyze the sales Insights data. And some looks like this...(AGGRIGATIVE FUNCTION, WINDOW FUNCTION, JOINS CLAUSE, WHERE CLAUSE, GROUP BY, ORDER BY, LIMIT).
select sum(t.sales_amount) as total_revenue from transactions as t where t.currency='inr\r' or t.currency= 'usd\r';
select sum(sales_qty) as total_sales_qty from transactions;
select markets_code, sum(t.sales_amount) as revenue from transactions as t join markets as m on t.market_code=m.markets_code where t.currency='inr\r'or t.currency='usd\r' group by markets_code order by sum(t.sales_amount) desc;
select m.zone, m.markets_name, sum(t.sales_amount)'revenue', row_number() over (partition by m.zone order by sum(t.sales_amount) desc)'Num_zone' from transactions t join markets m on t.market_code=m.markets_code where t.currency='inr\r' or t.currency='usd\r' group by m.zone,m.markets_name;
select d.year, sum(t.sales_amount)as revenue from transactions as t join date as d on t.order_date=d.date where t.currency='inr\r'or t.currency='usd\r' group by d.year;
select customer_type, sum(t.sales_amount) as revenue from transactions as t join customers as c on t.customer_code=c.customer_code where t.currency='inr\r'or t.currency='usd\r' group by customer_type;
select product_type, sum(t.sales_amount)as revenue from transactions as t join products as p on t.product_code=p.product_code where t.currency='inr\r'or t.currency='usd\r' group by product_type;
select custmer_name, sum(t.sales_amount)as revenue from transactions as t join customers as c on t.customer_code=c.customer_code where t.currency='inr\r'or t.currency='usd\r' group by custmer_name order by sum(t.sales_amount) desc limit 15;
Superstore data analysis for the superstore sales dataset. Collect dataset from Kaggle. And load the data on power BI from ETL process. And finally visualize the data. Analyzed Superstore sales data by region, category, and segment. Created visualizations to display sales and profit data. Identified top 10 profitable customers and top 10 selling products.
netflix movies & tv shows dataset from Kaggle. And loaded the csv.file data on power BI for analyzing the data. For this project I used DAX QUERY (exp. COUNTX FUNCTION for used find of total number of movies & total number of shows). I Analyzed the number of movies and TV shows released per year by Netflix. Explored ratings of Netflix movies and TV shows. Identified top 10 actors, directors, and viewed genres. Utilized DAX queries, including COUNTX, to analyze the top 5 movies and shows on Netflix.