question archive You are hired by a chain of online retail stores “Reliant retail limited”
Subject:Computer SciencePrice:0 Bought3
You are hired by a chain of online retail stores “Reliant retail limited”. They provided you with “orders” database and seek answers to the following queries as the results from these queries will help the company in making data-driven decisions that will impact the overall growth of the online retail store. ALL the questions comes under MYSQL and the queries should be executed in MYSQL. (SQL Script used - new Orders.sql)
1. Write a query to display customer full name with their title (Mr/Ms), both first name and last name are in upper case, customer email id, customer creation date and display customer's category after applying below categorization rules: i) IF customer creation date Year <2005 Then Category A ii) IF customer creation date 8 Year >=2005 and <2011 Then Category B iii)IF customer creation date Year>= 2011
Then Category C Hint: Use CASE statement, no permanent change in table required. [NOTE: TABLES to be used - ONLINE_CUSTOMER TABLE]#
2. Write a query to display the following information for the products, which have not been sold: product_id, product_desc, product_quantity_avail, product_price, inventory values (product_quantity_avail*product_price), New_Price after applying discount as per below criteria. Sort the output with respect to decreasing value of 3
Inventory _Value. i) IF Product Price > 200,000 then apply 20% discount ii) IF
Product Price > 100,000 then apply 15% discount iii) IF Product Price =< 100,000 then apply 10% discount # Hint: Use CASE statement, no permanent change in table required. [NOTE: TABLES to be used - PRODUCT, ORDER_ITEMS TABLE]
3. Write a query to display Product_class_code, Product_class_description, Count of Product type in each productclass, Inventory Value
(p.product_quantity_avail* p.product_price). Information should be displayed for 3 only those product_class_code which have more than 1,00,000. Inventory Value.
Sort the output with respect to decreasing value of Inventory_Value. [NOTE: TABLES to be used - PRODUCT_CLASS, PRODUCT_CLASS_CODE]
4. Write a query to display customer_id, full name, customer_email, customer_phone and country of customers who have cancelled all the orders 3 placed by them (USE SUB-QUERY)[NOTE: TABLES to be used -
ONLINE_CUSTOMER, ADDRESSS, OREDER_HEARDER}
5. Write a query to display Shipper name, City to which it is catering, num of customer catered by the shipper in the city and number of consignments delivered 3 to that city for Shipper DHL [NOTE: TABLES to be used -
SHIPPER,ONLINE_CUSTOMER, ADDRESSS, ORDER_HEARDER]
6. Write a query to display product_id, product_desc, product_quantity_avail, quantity sold, quantity available and show inventory Status of products as below as per below condition: a. For Electronics and Computer categories, if sales till date is Zero then show 'No Sales in past, give discount to reduce inventory’, if inventory quantity is less than 10% of quantity sold,show ‘Low inventory, need to add inventory’, if inventory quantity is less than 50% of quantity sold, show 'Medium inventory, need to add some inventory’, if inventory quantity is more or equal to 50% of quantity sold, show ‘Sufficient inventory’ b. For Mobiles and Watches categories, if sales till date is Zero then show 'No Sales in past, give discount to reduce inventory’, if inventory quantity is less than 20% of quantity sold, show ‘Low 3 inventory, need to add inventory’, if inventory quantity is less than 60% of quantity sold, show 'Medium inventory, need to add some inventory’, if inventory quantity is more or equal to 60% of quantity sold, show ‘Sufficient inventory’ c. Rest of the categories, if sales till date is Zero then show 'No Sales in past, give discount to reduce inventory’, if inventory quantity is less than 30% of quantity sold, show ‘Low inventory, need to add inventory’, if inventory quantity is less than 70% of quantity sold, show 'Medium inventory, need to add some inventory’, if inventory quantity is more or equal to 70% of quantity sold, show ‘Sufficient inventory’ -- (USE SUB-
QUERY) -- [NOTE: TABLES to be used - PRODUCT, PRODUCT_CLASS,
ORDER_HEADER]
7. Write a query to display order_id and volume of the biggest order (in terms of volume) that can fit in carton id 10 -- [NOTE: TABLES to be used - CARTON, 8
ORDER_ITEMS, PRODUCT]
8. Write a query to display customer id, customer full name, total quantity and total value (quantity* price) shipped where mode of payment is Cash and customer last 3
name starts with 'G' --[NOTE: TABLES to be used - ONLINE_CUSTOMER,
ORDER_ITEMS, PRODUCT, ORDER_HEADER]
9. Write a query to display product_id, product_desce and total quantity of products which are sold together with product id 201 and are not shipped to city Bangalore and New Delhi. Display the output in descending order with respect to the tot_qty. 8
-- (USE SUB-QUERY) -- [NOTE: TABLES to be used - order_items,
product,order_head, online_customer, address]
10. Write a query to display the order_id,customer_id and customer fullname, total quantity of products shipped for order ids which are even and shipped to address 3
where pincode is not starting with "5" -- [NOTE: TABLES to be used -
online_customer,Order_header, order_items,address]