i have one table with accounts and amounts as
colums.accounts with columns c and d. and amounts with
values 1000,2000,3000 for c and 4000,5000,8000 for d.i need
to find the sum of these accounts c and d individually
and find the differences between their sum using one select
statement.
Answer Posted / umesh naik
select a.amt1 c_sum ,b.amt2 d_sum
, a.amt1 - b.amt2 cd_diffrence
from
(select sum(amount) amt1 from one_table where account='c')
a,
(select sum(amount) amt2 from one_table where account='c') b
select (select sum(a.amount) from one a where
a.account='d')-(select sum(b.amount) from one b where
b.account='c') from dual;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is sharding in sql?
What is sqlerrm?
How do you change a value in sql?
How do I debug a stored procedure?
What is cascade in sql?
What is %rowtype in pl sql?
what is csv? : Sql dba
What can you do with pl sql?
what are aggregate and scalar functions? : Sql dba
How much does sql certification cost?
What are field types?
Is primary key clustered or nonclustered?
Define a temp table?
Explain the update statement in sql
What is compute?