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 ASM (Automatic Storage Management) in Oracle?

0 Answers   MCN Solutions,


How to delete a column in an existing table in oracle?

0 Answers  


Explain the difference between sap and oracle?

0 Answers  


what is query and types of query

6 Answers   Reliance,


What is set operator oracle?

0 Answers  






What is null value in oracle?

0 Answers  


How do I recompile a procedure in oracle?

0 Answers  


Why does oracle 9i treat an empty string as null?

0 Answers  


what is the bitmap index?

3 Answers  


What are the common oracle dba tasks?

0 Answers  


How to see the table columns used in an index?

0 Answers  


How to export data with a field delimiter?

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)