BookmarkSubscribeRSS Feed
karankhayani97
Calcite | Level 5

I have made a CTE that shows the orderdate sum of the ordered quantity, and its respective cumulative frequency. I have to keep this line "JOIN cte c2 ON c1.orderdate<=c2.orderdate" in this form only and get the correct results. Please tell me what changes are to be made in the code to get the correct result. The code is done in Postgres. Below is the output which I want.

CODE

NOTE: No changes have to be made in this line "JOIN cte c2 ON c1.orderdate<=c2.orderdate"

WITH cte
AS(
SELECT o.orderdate, SUM(od.quantity) AS "totalsum" FROM orders o
JOIN orderdetails od ON o.orderid=od.orderid
GROUP BY o.orderdate
)
SELECT c1.orderdate, c1.totalsum, SUM(c2.totalsum) FROM cte c1
JOIN cte c2 ON c1.orderdate<=c2.orderdate
GROUP BY c1.orderdate, c1.totalsum
ORDER BY c1.orderdate;

 

karankhayani97_0-1612797527554.png

 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

Tips for filtering data sources in SAS Visual Analytics

See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 0 replies
  • 428 views
  • 0 likes
  • 1 in conversation