Skip to content
Advertisement

Mysql query for getting monthwise n th highest spending customer

I am using sakila.payment table. Columns: payment_id, customer_id, staff_id, rental_id, amount, payment_date, update_date

I am using this query to get customers spending the highest amount for each month. How can I get the Nth highest spending customer for each month?

Advertisement

Answer

Try the following, if you are using MySQL 8.0 then it will work with row_number()

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement