Instruction
Perfect! We have a slightly more complicated task for you next.
Exercise
Calculate the total revenue generated (after discount) by customers from France and by customers from other countries. Show two columns: CustomerCountry (either N'France' or N'Other') and DiscountRevenue. Round the second column to two decimal places.
Stuck? Here's a hint!
In the inner query, join the Orders and Customers table. Use the Country column to find out if a customer is from France. In the outer query, join the CTE with OrderItems to calculate the sum for each order. Use the ROUND(Column, 2) function.




