in account table
account type amount
ac1 credit 300
ac2 debit 5000
ac3 credit 3000
ac1 debit 4000
ac3 debit 2000
ac2 credit 4000
write a query how to get sum of credit & sum of debit

Answers were Sorted based on User's Feedback



in account table account type amount ac1 credit 300 ac2 debit 5000 ac3 credit ..

Answer / vijay patil

-----------table lavel credit debit
select
sum(case when type=credit then isnull(amount,0)end)sum_credit,
sum(case when type=debit then isnull(amount,0) end)sum_debit
from account_table;

OR -----------table lavel credit debit

select type,sum(amount)amt
from account_table
group by type;

OR (at accont lavel credit debit)

select account,type,sum(amount)amt
from account_table
group by account,type;

Is This Answer Correct ?    8 Yes 0 No

in account table account type amount ac1 credit 300 ac2 debit 5000 ac3 credit ..

Answer / sanjay

select type,sum(amount)from account table group by type

Is This Answer Correct ?    3 Yes 0 No

in account table account type amount ac1 credit 300 ac2 debit 5000 ac3 credit ..

Answer / kamala k n

select type, sum(amount) over (partiton by sid) from tab

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle General Interview Questions

am completed mca2011 how get certification in oracle

1 Answers  


Explain the use of file option in exp command.

0 Answers  


What is system tablespace?

0 Answers  


Differentiate between translate and replace?

0 Answers  


Are truncate and delete commands same? If so why?

0 Answers  






How does propagation differ between Advanced Replication and Snapshot Replication (read-only)?

0 Answers  


what diffrence between function and procedure?

4 Answers  


 What are the oracle DML commands possible through an update strategy?

0 Answers   Informatica,


Difference between varchar and varchar2 data types?

0 Answers  


What are the major difference between truncate and delete?

0 Answers  


I have one table :EID,Depid,ename,sal I want to have max(sal) in each department.

5 Answers   Microsoft, Oracle, TCS,


how will I find the first 5 highest salaried employees in each dept in oracle.

22 Answers   IBM,


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)