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
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 |
Answer / sanjay
select type,sum(amount)from account table group by type
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / kamala k n
select type, sum(amount) over (partiton by sid) from tab
| Is This Answer Correct ? | 0 Yes | 0 No |
a query to select maxmun 3 salaries of employee table
what r tyhe major differences between oracle 9i & 10g?
Explain the types of exception?
Can we insert data in view oracle?
Can we write dml statement in function in oracle?
How many types of auditing in Oracle?
How to build data dictionary view an new database?
what are the advantages of running a database in NO archive log mode?
When a form is invoked with call_form, Does oracle forms issues a save point ?
How do we switch from init.ora file to asp file?
What is the maximum number of CHECK constraints that can be defined on a column ?
Give the different types of rollback segments.