In this blog post, we will load the retail data into MySQL instances and analyze it using Structured Query Language(SQL). SQL is one of the most popular languages among developers, data engineers, data scientists, and DBAs.
Number of Customers whose Order status is Pending Payment
mysql> SELECTCOUNT(*) ascountFROMcustomers c JOINorders o ON(c.customer_id=o.order_customer_id) WHEREo.order_status='PENDING_PAYMENT';
+-------+
| count|
+-------+
| 15030 |
+-------+
1 row inset(0.06 sec)
Number of Customers whose Order status is Closed
mysql> SELECTCOUNT(*) ascountFROMcustomers c JOINorders o ON(c.customer_id=o.order_customer_id) WHEREo.order_status='CLOSED';
+-------+
| count|
+-------+
| 7556 |
+-------+
1 row inset(0.03 sec)
Get Customer details, and order status who live in the state of Texas
SELECTc.customer_fname,c.customer_lname,o.order_date,o.order_status FROMcustomers c JOINorders o ON(c.customer_id=o.order_customer_id) WHEREc.customer_state='TX'LIMIT 20;
Completed version of the Script
You can find the complete version of the script at the below location.