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 / ritika yadav
select account_code,account_type, sum (amt)
from tab
where to_char(trx_date,'DD-MM-YYYY') between '01-04-2014' and '30-04-2014'
group by account_code, account_type
order by account_code, account_type;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
does sql support programming? : Sql dba
How many tables can a sql database have?
How many clustered indexes can you have?
What is pl sql and why it is used for?
Name some usages of database trigger?
How to get help at the sql prompt?
Why primary key is required?
explain about mysql and its features. : Sql dba
What are the advantages of sql? Explain
What are the methods of filing?
how to include comments in sql statements? : Sql dba
What are all different types of collation sensitivity?
How to write a query to show the details of a student from students table whose
how are mysql timestamps seen to a user? : Sql dba
What is null in pl/sql?