acname actype amount
ac1 credit 300
ac2 credit 4000
ac1 debit 4000
ac2 debit 455
ac1 credit 500
how to get sum of credit and sum of debit for each account

Answers were Sorted based on User's Feedback



acname actype amount ac1 credit 300 ac2 credit 4000 ac1 debit 4000 ac2 debit ..

Answer / terence

select
acname,
sum(decode(actype,'credit',amount,0)) Credit,
sum(decode(actype,'debit',amount,0)) Debit
from account_table
group by acname

Is This Answer Correct ?    11 Yes 1 No

acname actype amount ac1 credit 300 ac2 credit 4000 ac1 debit 4000 ac2 debit ..

Answer / amit kumar

select sum(amount) amt , acname, actype from table group by
acname , actype

Is This Answer Correct ?    6 Yes 2 No

Post New Answer

More Oracle General Interview Questions

What is a recycle bin in oracle?

1 Answers  


Explain the use of record option in exp command.

0 Answers  


which is best insttute for teradata,sybase,mysql,oracle in hyderabad

1 Answers  


How to execute the package in oracle?

0 Answers  


11. Display the client number and name and the client number and name of the person who referred that client.

0 Answers   Wipro,






How to use "in" parameter properly?

0 Answers  


What is bind variable in oracle 11g?

0 Answers  


How can we Update a table with out using UPDATE command?

1 Answers  


What is hash cluster in oracle?

0 Answers  


What is data file?

0 Answers  


Explain index?

0 Answers  


How to create an oracle database?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)