I have attached question file, starter file for sql. plus i have answer for more than 85%, i just need help on some questions only, and then you have to run the file in sql plus and give me the output

INSY 3304

Project 3

Using Oracle, access the tables you created in Project 2 and complete the following SQL transactions. The text file must contain both your statements and the results from Oracle (this will be the spooled .txt file). All column headings must be shown in their entirety (i.e., points will be deducted if column names are truncated). Insert comment lines at the top of your file containing your full name, course-section number, and project number). In addition, use comment lines to number your statements. Add a cover sheet with your name, course, project, and submission date; and submit at the beginning of class on the date specified in Canvas.

Part I.

  1. All column headings must show in their entirety--no truncated column headings.

  1. Line size should be set at least 125 and no more than 150 to minimize column wrapping.

  1. Properly use table aliases and dot notation where applicable.

  1. Add a new Customer:

CustID CustFName CustLName CustPhone SalesRepID

T104 Wes Thomas 469-555-1215 22

  1. Add a new Product:

ProdID ProdName ProdCatID Price

246 Milwaukee Power Dril1 2 $179

  1. Add a new Order. Generate the OrderID by incrementing the max OrderID by 1.

OrderDate CustID

1/28/2022 T104

Add OrderDetails using the OrderID for the new Order above:

ProdID ProdQty ProdPrice

618 1 Current Price*

407 2 Current Price*

124 1 Current Price*

  1. Add a new Order. Generate the OrderID by incrementing the max OrderID by 1.

OrderDate CustID

1/29/2022 S100

Add OrderDetails using the OrderID for the new Order above:

ProdID ProdQty ProdPrice

535 3 Current Price*

246 1 Current Price*

610 2 Current Price*

* Use a nested SELECT statement to get the current price from the PRODUCT table.

  1. Change the phone number for Customer B200 to 817-555-8918.

  1. Commit all changes above before proceeding to the next step.

Part II.

  1. List the first name, last name, sales rep ID, commission class, and commission rate for all Sales Reps. Combine the first and last name into one column (include a space between them). Sort by last name in ascending order, and use the following column headings: SalesRep Name, Sales Rep ID, Commission Class, Commission Rate.

  1. List all rows and all columns from OrderDetail; sort by Order ID then by Product ID, both in ascending order; format the Product Price as currency. Use the following column headings: Order ID, Product ID, Qty, Price

  1. For all customers, list the customer ID, customer first name, customer last name, and customer phone number, along with the sales rep ID, sales rep first name, and sales rep last name of the sales rep to whom that customer belongs; sort by Customer ID in ascending order; format the phone number as ‘(###) ###-####’ by using concatenation and the SUBSTR function. Use the following column headings: CustID, CustFirstName, CustLastName, CustPhone, SalesRepID, SalesRepFirstName, SalesRepLastName.

  1. List the department ID, department name, sales rep ID, first name, last name, commission class, and commission rate of the sales rep(s) who earn the highest commission in each department. Use the following column headings: Dept_ID, Dept_Name, Sales_Rep_ID, First_Name, Last_Name, Commission_Class, Commission_Rate.

  1. List the product ID, product name, category name, and price for the highest priced product(s) sold in order 100. Show the price formatted as currency, and use the following column headings: Product_ID, Product_Name, Category, Price.

  1. List the department name and the count of sales reps in each department; group by department name, and sort by sales rep count in ascending order. Use the following column headings: Dept_Name, Sales_Rep_Count.

  1. List the sales rep ID, first name, last name, and commission rate for each sales rep who earns a commission rate less than or equal to 5%, but do NOT include sales reps who earn 0% commission. Sort by commission rate in descending order. Show the commission rate as a percentage (e.g., 5% instead of .05). Use the following column headings: Sales_Rep_ID, First_Name, Last_Name, Commission_Rate.

  1. For each order, list the order ID, order date, customer ID, customer first name, customer last name, sales rep ID, sales rep first name, and sales rep last name; sort by order ID; Format the order date as “mm/dd/yy”

  1. List the order ID, product ID, product name, category ID, product price, product qty, and extended price (price * qty) for all products sold in order 104. Sort by extended price and format the price as currency. Use the following column headings: OrderID, ProdID, ProdName, CatID, Price, Qty, ExtPrice.

  1. List the department ID, department name, count of sales reps, and average commission rate for each department. Group by department, and sort by average commission rate in ascending order. Show the average commission rate as a percentage (e.g., 3.5% instead of .035). Use the following column headings: DeptID, DeptName, SalesRepCount, AvgCommRate.

  1. List the sales rep ID, first name, last name, department name, commission class and commission rate for all sales reps that earn a commission greater than 0%. Sort by sales rep ID in ascending order.

  1. List the sales rep ID, first name, last name, department ID, and department name for all sales reps whose commission class is ‘A.’ Concatenate the first and last names together, using SalesRep_Name as the column heading. Sort by department ID then by sales rep ID.

  1. List the order ID and calculated total for all products sold in order 104. Format the total as currency. Use the following column headings: Order_ID, Order_Total.

  1. List the average product price of all products sold, formatted as currency. Use Avg_Price as the column heading.

  1. List the product ID, product name, and current product price for the product(s) sold in more orders than any other products (based on number of order occurrences, not the quantity). Format the price as currency, and use the following column headings: ProductID, Name, Price.

  1. List the category ID, product ID, product name, and current product price for the lowest priced product in each category. Format the price as currency, and use the following column headings: Cat_ID, Prod_ID, Prod_Name, Price.

  1. List the product ID, product name, category name, and current product price for all products which have a price greater than the average product price. Format the price as currency.

  1. List the order ID, order date, customer ID, customer first name, customer last name, and customer phone number for all orders on or before 1/26/22. Combine the first and last name into one column (include a space between them). Sort by order date then by customer ID, both in ascending order. Format the date as “mm-dd-yyyy” and use the following column headings: Order ID, Order Date, Cust ID, Name, Phone.

  1. List the customer ID, first name, and last name of all customers whose first names start with the letter ‘A’ and sort by last name. Use the following column headings: CustID, FirstName, LastName.

  1. List the customer ID, customer first name, customer last name, and phone number of all customers who belong to sales rep 12. Combine the first and last name into one column (include a space between them). Format the phone number as ‘###-###-####’ by using concatenation and the SUBSTR function, and use the following column headings: Customer ID, Name, Phone.