The Next Order Countdown:Track Each Customer’s Order History and Their Next Purchase Date
Intermediate
Show each customer's order along with the date of their next one, if it exists.
Xorthax wants to understand the order patterns of his customers. Write a query to display each customer's Order ID, the date of that order, and the date of their next order, if it exists.
Write Your Query
Answer:
select customerid,
orderid,
orderdate,
lead(orderdate) over (partition by customerid
order by orderdate asc) as nextorderdate
from orders;
Explanation:
This represents customer behavior analysis, where businesses study purchase intervals to understand buying frequency and predict future activity.
You’ll practice comparing consecutive records within a group to analyze sequential event relationships.
This problem is labeled as Intermediate. It assumes you’ve written a few window function queries before, but you don’t need to be an expert. Use the hints and explanations if you get stuck — they’re there to help you think through the logic.
Yes. Every problem comes with optional hints you can reveal one at a time, plus a fully worked step-by-step solution. You decide how much help you want while practicing.
All problems on PracticeWindowFunctions.com are completely free and can be solved without creating an account. Right now there are over 80 practice problems, with new ones added regularly.