Instruction
Fine. The last two questions deal with the order of evaluation.
Exercise
For each platform, show the following columns: platform, sum of subscription payments for that platform and its rank based on that sum (the platform with the highest sum should get the rank of 1).
Stuck? Here's a hint!
Use RANK() OVER(ORDER BY SUM(payment_amount) DESC) as the window function.



