Re: Onfly Query - cumulative sum the stock change values by articles

2021-01-07 Thread Durumdara
Hello! Durumdara ezt írta (időpont: 2021. jan. 7., Cs, 10:17): > Hello! > > I have a query where I can show the positive and negative future changes > of the articles. > For example: > > select art.id, art.name, art.actual_stock, art.min_stock, > change.stock_change, change.date > from change l

Onfly Query - cumulative sum the stock change values by articles

2021-01-07 Thread Durumdara
Hello! I have a query where I can show the positive and negative future changes of the articles. For example: select art.id, art.name, art.actual_stock, art.min_stock, change.stock_change, change.date from change left join art on art.id = change.art_id order by art.id, change.id Ok, I have a lis