COMO MONTAR O COMANDO SQL ?

EDICRI 30/06/2011 14:36:58
#378151
Por favor em uma Tabela de movto, tenho os campos DEBITO, CREDITO, DATALAÇTO.
Preciso somar os campos DEBITO em TOTALDEBITO, CREDITO EM TOTALCRDITO, e que tenham DATALACTO menor que data informada no form. Os totais de DEBITO E CREDITO, também preciso apesentar no form. Por favor me ajudem
Edison Roque
KERPLUNK 30/06/2011 17:58:50
#378176
select * from ((select sum(debito) from tabela where datalacto< textbox1.text) as totaldebito, (select sum(credito) from tabela where datalacto< textbox1.text) as totaldebitocredito)

depois basta colocar nas textbox ou labels os valores:

txtTotalDebito.text = rs!totaldebito
txtTotalCredito.text = rs!totalcredito

Tópico encerrado , respostas não são mais permitidas