trans_id trans_date trans_amt debit_credit_indicator
001 01-JAN-13 1099 cr
001 12-JAN-13 500 db
002 24-FEB-13 400 db
002 23-MAR-13 345 cr
001 18-APR-13 800 cr
002 15-MAR-13 600 db
001 12-FEB-13 200 cr

i want like this output
trans_id trans_date trans_amt debit_credit_indicator
001 JAN 1599 cr

no.of trans
2

i want trans_id and trans_date like 'JAN' or 'FEB' etc,
trans_amt i want all credit amount - debit amount per each
trans_id. and debit_credit_indicator and no.of transactions
in a month.



trans_id trans_date trans_amt debit_credit_indicator 001 01-JAN-13 1099 cr ..

Answer / vinay

Select distinct trans_id ,
to_char(trans_date,'MON') as TRANS_DATE,
count(trans_amt) over (partition by trans_id,to_char
(trans_date,'MON')) as No_OF_TRANSACTION
,sum(trans_amt) over (partition by trans_id,to_char
(trans_date,'MON')) as TRANS_AMOUNT,
debit_credit_indicator from CUSTOMER

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What are the types of subqueries?

0 Answers  


What is sql used for?

0 Answers  


Mention what pl/sql package consists of?

0 Answers  


Can we enter data in a table in design view?

0 Answers  


Explain lock escalation? : Transact sql

0 Answers  






What is sql table?

0 Answers  


What is a record in a database?

0 Answers  


Types of cursors and explanation each of them ?

4 Answers   DELL,


What is the life of an sql statement?

0 Answers  


Where not exists in sql?

0 Answers  


how many columns can be used for creating index? : Sql dba

0 Answers  


How do I run a sql trace?

0 Answers  


Categories