BDM - CP5
BDM - CP5
CLASS PARTICIPATION – 5
BY,
SHARA GEORGE VAIDIAN – 2327848
MBA PROGRAMME
SCHOOL OF BUSINESS AND MANAGEMENT
CHRIST (DEEMED TO BE UNIVERSITY),BANGALORE
MARCH 2024
The Product Feedback Analysis System aims to systematically collect, analyze, and respond to customer
feedback on products to enhance product quality, customer satisfaction, and inform product development
strategies.
An inefficient and disorganized system for analyzing customer feedback causes these issues:
Missing or forgetting valuable insights from customers due to disorganized collection.
Spending a lot of time analyzing large amounts of unstructured feedback, making it hard to spot
common issues or preferences.
Struggling to handle a large volume of individual feedback points.
Difficulty making informed decisions about product improvements and future strategies due to
unclear insights from feedback.
Entities:
1. Customer
Customer_ID
Name
Email
Registration_Date
2. Product
Product_ID
Name
Category
Price
3. Feedback
Feedback_ID
Customer_ID
Product_ID
Rating
Category
Comment
Date
4. Category
Category_ID
Name
5. SalesData
Transaction_ID
Customer_ID
Product_ID
Quantity
Unit_Price
Total_Price
Transaction_Date
Relationships:
E-R Diagram:
Creation of tables:
Customer
Feedback
Category
Sales data
Insert Statements:
Customer table:
Product Table:
Feedback table:
mysql> INSERT INTO feedback (feedback_id, customer_id, product_id, rating, category, comment, date)
-> VALUES
-> (1, 1, 101, 5, 'Electronics', 'Great product, highly recommended', '2023-01-05'),
-> (2, 2, 102, 4, 'Electronics', 'Good quality headphones', '2023-02-20'),
-> (3, 3, 103, 3, 'Clothing', 'Average quality t-shirt', '2023-03-25'),
-> (4, 1, 101, 5, 'Electronics', 'Excellent service and product', '2023-04-01'),
-> (5, 4, 104, 2, 'Clothing', 'Poor fitting jeans', '2023-04-05');
Query OK, 5 rows affected (0.01 sec)
Records: 5 Duplicates: 0 Warnings: 0
Category table:
mysql> INSERT INTO sales_data (transaction_id, customer_id, product_id, quantity, unit_price, total_price, transaction_date)
-> VALUES
-> (1, 1, 101, 2, 1200.00, 2400.00, '2023-01-05'),
-> (2, 2, 102, 1, 100.00, 100.00, '2023-02-20'),
-> (3, 3, 103, 3, 20.00, 60.00, '2023-03-25'),
-> (4, 1, 101, 1, 1200.00, 1200.00, '2023-04-01'),
-> (5, 4, 104, 2, 50.00, 100.00, '2023-04-05');
Query OK, 5 rows affected (0.02 sec)
Records: 5 Duplicates: 0 Warnings: 0
mysql>
Conclusion:
The Product Feedback Analysis System is vital for businesses to handle customer feedback effectively.
Challenges from an inefficient system highlight the need for a structured approach, with the Entity-
Relationship (ER) diagram offering a practical solution for organized data. By understanding the importance
of product feedback and its benefits, businesses can enhance products, customer satisfaction, marketing
strategies, and sales. Overall, an organized feedback system improves the customer experience and helps
businesses make informed decisions.