IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

How to write a SQL query to get the above output


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
srvmani
Warnings : 1

New User


Joined: 30 Dec 2003
Posts: 19

PostPosted: Thu May 27, 2010 10:10 pm
Reply with quote

Hi

I have the following query

select sum(salary), basic, tax from the table1
union
selct sum(salary), basic,tax from the table2

the result would be like below

sum(sal) basic tax
--------------------------
7500 5000 10.5
8500 2000 11.5

But I want out put be like below

sum(sal) basic tax
------------------------
16000 70000 22.0

I have tried in several ways. Could you please let me know how to write a query to get the above output.

Thanks
Subba
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Fri May 28, 2010 12:11 am
Reply with quote

can't test it, too lazy to bring up db2,
but

Code:

select sum(t.salary) as SALARY
     , sum(t.basic)  as BASIC
     , sum(t.tax)    as TAX
from (
       select sum(salary)
            , sum(basic)
            , sum(tax)
         from table1
     union
       select sum(salary)
            , sum(basic)
            , sum(tax)
         from table2
      ) as t

Back to top
View user's profile Send private message
rocky_balboa

New User


Joined: 24 Mar 2010
Posts: 61
Location: Cape of Good Hope

PostPosted: Fri May 28, 2010 12:23 am
Reply with quote

dbzTHEdinosauer
I am lazier than you....I was going to post about the inline view so that he could try it himself....but you have posted the entire query icon_smile.gif ...

You have made him much more lazy...
Back to top
View user's profile Send private message
ashimer

Active Member


Joined: 13 Feb 2004
Posts: 551
Location: Bangalore

PostPosted: Fri May 28, 2010 1:38 pm
Reply with quote

Probably it should be an UNION ALL so that duplicates are retained.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts TRIM everything from input, output co... DFSORT/ICETOOL 1
No new posts Write line by line from two files DFSORT/ICETOOL 7
No new posts Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
No new posts RC query -Time column CA Products 3
No new posts Joinkeys - 5 output files DFSORT/ICETOOL 7
Search our Forums:

Back to Top