I have thoroughly reviewed the Honorlock guidelines and ackn…

I have thoroughly reviewed the Honorlock guidelines and acknowledge each directive.  By proceeding with this assessment, I affirm my committment to adhere to all Honorlock policies and directions for this assessment.  I understand that any violation of these guidelines will result in receiving a zero for this assessment. 

Write the SQL query to create a report showing region name,…

Write the SQL query to create a report showing region name, number of unique customers, total revenue from purchases, number of unique products purchased, and average purchase amount per region. This will guide regional marketing strategies. (10 points) Display: region_name, unique_customer_count, total_revenue, unique_products_purchased, avg_purchase_amount (sorted by total_revenue descending)  

Write a SQL query to provide information to help with the fo…

Write a SQL query to provide information to help with the following decision: the product team wants to understand Silver membership customers’ interest in Sports products. They want to identify all Silver members who have purchased products in the Sports category. Display: customer_name, city, product_name, purchase_amount, purchase_date (sorted by purchase_amount descending)

Question: Management wants to review products from internati…

Question: Management wants to review products from international suppliers (not from USA) that are priced under $100 OR are in the ‘Sports’ or ‘Accessories’ categories. Write the query to show product and supplier details.  Display: product_name, category, unit_price, supplier_name, country (sorted by country ascending, unit_price descending)