Two Orders Before, Two Orders After: The Price Prophecy
Tables Used
orderdetails
Column
Type
orderdetailid
bigint
orderid
bigint
productid
bigint
quantity
bigint
unitprice
double precision
currencyid
bigint
orders
Column
Type
orderid
bigint
customerid
bigint
orderdate
timestamp without time zone
totalamount
double precision
status
text
products
Column
Type
productid
bigint
name
text
description
text
category
text
price
double precision
supplierid
bigint
stockquantity
bigint
Expected Output
Column
productid
orderdate
quantity
unitprice
futureprice
pastprice
4. Two Orders Before, Two Orders After: The Price Prophecy
Analyze price changes across the timeline of trade.
Xorthax wants to analyze price trends for products over time. For each Product ID, find the Order Date, Quantity, current unit price and the unit price two orders before and after the current order date.
Write Your Query
Answer:
Explanation:
This problem is labeled as Intermediate. You don’t need to be an expert—just comfortable with SQL and willing to experiment. If you get stuck, the hints and solution will guide you step by step.
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.