Thanks for the time answering this.
I want to make a cumulative sum using a sql statement. Can you help me telling whats the error in this formula:
select "data da operação","Cliente", (select sum(x."saldo inicial") + IF(x."TIPO"='SALDO INICIAL',0,if(sum(x."Quantidade")=0,sum(x."profit"),0))as "Patrimônio" from "Futura Completo" x
where x."DATA DA OPERAÇÃO"<= "DATA DA OPERAÇÃO") as teste
from "Futura Completo"
order by t."DATA DA OPERAÇÃO"