Does Firebird 3.0’s Window Function work in LO Base 6.4?
I have this query written in SQL:
SELECT “Date”, “Qty”, SUM( “Qty” ) OVER (Order by “Date” ) as “Daily Qty” FROM “Inventori”
Somehow, the command
Sum (“Qty”) Over (Order by “Date”)
is automatically changed by LO Base with
Sum (“Qty”) Over ()
I have also tried to put the command on the normal query design mode, but the same thing happens. Does anybody have an Idea what went wrong?
Thank you.