Programming Homework Help

Programming Homework Help. CSUGC My Guitar Shop Database Queries Exercise MySQL Programming Exercise

  1. Write a SELECT statement that returns the product_name and list_price columns from the Products table.Return one row for each product that has the same list price as another product.Hint: Use a self-join to check that the product_id columns aren’t equal but the list_price columns are equal.Sort the result set by the product_name column. Submit a screenshot.
  2. Write a SELECT statement that returns these two columns:category_name        The category_name column from the Categories tableproduct_id               The product_id column from the Products tableReturn one row for each category that has never been used. Hint: Use an outer join and only return rows where the product_id column contains a null value. Submit a screenshot.
  3. Write an INSERT statement that adds this row to the Customers table:email_address:         rick@raven.compassword:                (empty string)first_name:                Ricklast_name:                 RavenUse a column list for this statement. Submit a screenshot.
  4. Write a SELECT statement that answers this question: Which customers have ordered more than one product? Return these columns:The email_address column from the Customers tableThe count of distinct products from the customer’s ordersSort the result set in ascending sequence by the email_address column. Submit a screenshot.
  5. Write a SELECT statement that answers this question: What is the total quantity purchased for each product within each category? Return these columnsThe category_name column from the category tableThe product_name column from the products tableThe total quantity purchased for each product with orders in the Order_Items tableUse the WITH ROLLUP operator to include rows that give a summary for each category name as well as a row that gives the grand total.Use the IF and GROUPING functions to replace null values in the category_name and product_name columns with literal values if they’re for summary rows. Submit a screenshot.
  6. Write and execute a script that creates a user with a username using your firstname initial and lastname and password of your choosing. This user should be able to connect to MySQL from any computer.This user should have SELECT, INSERT, UPDATE, and DELETE privileges for the Customers, Addresses, Orders, and Order_Items tables of the My Guitar Shop database.However, this user should only have SELECT privileges for the Products and Categories tables. Also, this user should not have the right to grant privileges to other users.Check the privileges for the user by using the SHOW GRANTS statement. Submit a screenshot.
  7. Write a SELECT statement that returns these column names and data from the Products table:product_name The product_name columnlist_price The list_price columndiscount_percent The discount_percent columndiscount_amount A column that’s calculated from the previous two columnsdiscount_price A column that’s calculated from the previous three columnsRound the discount_amount and discount_price columns to two decimal places. Sort the result set by the discount_price column in descending sequence. Use the LIMIT clause so the result set contains only the first five rows. Submit a screenshot.
  8. Write a SELECT statement that returns these column names and data from the Order_Items table:item_id The item_id columnitem_price The item_price columndiscount_amount The discount_amount columnquantity The quantity columnprice_total A column that’s calculated by multiplying the item price by the quantitydiscount_total A column that’s calculated by multiplying the discount amount by the quantityitem_total A column that’s calculated by subtracting the discount amount from the item price and then multiplying by the quantityOnly return rows where the item_total is greater than 500. Sort the result set by the item_total column in descending sequence. Submit a screenshot.
  9. Write a SELECT statement that answers this question: Which customers have ordered more than one product? Return these columns:The email_address column from the Customers tableThe count of distinct products from the customer’s ordersSort the result set in ascending sequence by the email_address column. Submit a screenshot. 

Programming Homework Help

 
"Our Prices Start at $11.99. As Our First Client, Use Coupon Code GET15 to claim 15% Discount This Month!!"