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
Answer Posted / 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 |
Post New Answer View All Answers
How can I get column names from a table in oracle?
When system tablespace is created?
How does oracle handle read consistency?
is there a tool to trace queries, like profiler for sql server?
What are the differences between primary key and unique key?
What is a nested table and how is it different from a normal table?
Iam learning oracle developer 2000.. can anyone give me then tutorials sites or PDF related to developer 2000 please send me the details @ mak2786@gmail.com thanks Arun
What is the difference between truncate & delete command?
How to define default values for formal parameters?
How to assign data of the deleted row to variables?
Where are the settings stored for each instance in oracle?
How to select an oracle system id (sid)?
Will you be able to store pictures in the database?
What is oracle database 10g express edition?
How to convert a string to a date in oracle database?