table name :Tab
fields name
1.trx_no (pk)
2.trx_date
3.account code (7 char)
4.account type (1 char)
5.amt
Tab contains account code day wise debit and credit transaction , account type fiels can have 2 value D for debit and c for Credit .
write a query to display the account code wise total debit and credit bal for the month of april 2004.
write a query to display account code wise new amt credit for the april 2004
Answer Posted / jayashree
SELECT SUM(DECODE(ACC_CODE, 'C', AMT)) Total_credit_bal,
SUM(DECODE(ACC_CODE, 'D', AMT)) Total_debit_bal
from tab
where to_char(trx_date,'DD-MON-YYYY') between
'01-apr-2014' and '30-apr-2014';
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the file extension for sql database?
How can you know that statistics should be updated?
Do we need to rebuild index after truncate?
What is cursor and why it is required?
What is embedded sql with example?
what are the advantages of using stored procedures? : Sql dba
How is data stored on a disk?
how many triggers are allowed in mysql table? : Sql dba
What are transaction and its controls?
What do you mean by stored procedures?
Where is sql database stored?
How to test for null values?
what is a database lock ? : Sql dba
How do I remove all records from a table?
how to drop an existing index in mysql? : Sql dba