|
|
| Just another Perl shrine | |
| PerlMonks |
Comment on |
| ( #3333=superdoc: print w/ replies, xml ) | Need Help?? |
|
1) Query data from transaction table and calculate the total balance in each account Select columns from your table, group by "accnum". When "type" = 'credit', then add "amount"; when "type" = 'debit', subtract "amount". And then display the result as a column in your resultset. 2) Query data from transaction table SELECT columns FROM transaction tableand calculate total amount sum(...)debited by cheque, chequeno IS NOT NULLdd ddno IS NOT NULLand by cash chequeno IS NULL AND ddno IS NULLfor each account. GROUP BY accnumFor the rest, why not look here? And there. In reply to Re^6: SQL Database Table to Perl Script
by Anonymous Monk
|
|