Fоr Questiоn 2, yоu need to get the totаl profit by sаles method for 2024, rounded to whole numbers аnd output only rows with total profit between 100,000 and 150,000 . The poduct of operating_margin and sales will give you the profit. So, the sum of units sold*price per unit*operating margin is the total profit. If you're not sure how to put the query together, follow the steps below, otherwise jump to the question in the last line: 1) Can you use the same join as in the previous question? If so, get the total profit for the entire data. If not tweak the join. You should get a total profit of 683044 rounded, without applying any filter. 2) Follow steps similar to 3 & 4 in the previous question, but with the required changes in the aggregation and the group by column, to get the total profit by sales method. 3) Use ROUND() function on the calculation for total_profit to output the column for total profit as a whole number 4) Use the required filter to restrict the output to sales methods that had total profits between 100,000 and 150,000 The output will look similar to this (Values are fake though and the # of rows output may be fewer) : Question: Write a query to get the total profit by sales method for 2024 that outputs only sales methods between 100,000 and 150,000 in total sales for the year. Which sales method had profit between 100,000 and 150,000? What was the profit?