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

Answers were Sorted based on User's Feedback



table name :Tab fields name 1.trx_no (pk) 2.trx_date 3.account code (7 char) 4.account type (1 ..

Answer / 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

table name :Tab fields name 1.trx_no (pk) 2.trx_date 3.account code (7 char) 4.account type (1 ..

Answer / 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

More SQL PLSQL Interview Questions

how will u find statistics of a database objects?

2 Answers   iFlex,


what is 'mysqldump'? : Sql dba

0 Answers  


Can you join views in sql?

0 Answers  


what is 'mysqlcheck'? : Sql dba

0 Answers  


How can we link a sql database to an existing android app?

0 Answers  






Why we use sql profiler?

0 Answers  


Explain cursor types?

0 Answers  


Which join is like an inner join?

0 Answers  


which tcp/ip port does sql server run on? : Sql dba

0 Answers  


how to rename an existing column in a table? : Sql dba

0 Answers  


Can we join same table in sql?

0 Answers  


what happens if null values are involved in expressions? : Sql dba

0 Answers  


Categories