This task is part of the Internship program. The objective is to use SQL to perform data analysis operations on an ecommerce dataset. The task involves writing queries to filter, join, aggregate, and summarize data using SQL commands .
Use SQL to extract, manipulate, and analyze structured data using queries, joins, subqueries, and views.
- SQLite (via DB Browser)
- Dataset: Ecommerce_SQL_Database (or Chinook)
- GitHub for version control
- Filtered customers by city
- Sorted products by price
- Counted orders per customer
- Used INNER JOIN for customer-order data
- Used LEFT JOIN for product-category data
- Fetched customers with more than 5 orders
- Calculated average order value and total revenue
- Created a view to summarize customer order revenue
- Created an index on orders.customer_id to optimize JOINs
Prachee