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


Please Help Members By Posting Answers For Below Questions

Can we use insert statement in function?

735


How do you modify a table in sql?

800


How can we avoid duplicating records in a query?

739


What is normalization in sql?

718


What has stored procedures in sql?

779






What are the possible values for the boolean data field?

690


How do you declare a variable in pl sql?

745


Does pdo prevent sql injection?

696


how is exception handling handled in mysql? : Sql dba

769


What is cursor status?

931


Is sqlexception checked or unchecked?

723


What is the benefit of foreign key?

714


Can we insert in view in sql?

778


What is primary key and foreign key?

717


Is left join and outer join same?

765