i have used the query function in SlamData. My code:
SELECT
DATE_PART("year",thedate) AS year,DATE_PART("month",thedate) AS month,
SUM(runningPnL) AS PnL
FROM "/Mickey/testdb/sampledata3" AS c
GROUP BY DATE_PART("year", thedate) ,DATE_PART("month", thedate)
order by DATE_PART("year", thedate) ,DATE_PART("month", thedate)
The extract of my table:
PnL month year
-1651.8752 1 2001
17180.4776 2 2001
48207.54560000001 3 2001
Now, how can i find the cumulative sum of the PnL?
eg.-1651.8752
for the first month
15528.6024
for the second month
Thank you very much >.<