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

To display values of multiple rows into singlw row


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

Active User


Joined: 02 Oct 2008
Posts: 179
Location: India

PostPosted: Thu Mar 09, 2017 1:20 pm
Reply with quote

Hi All,

My requirement is, to have values in multiple rows of a query to be displayed in single row in different column fields.

DB2 Query
Code:
  SELECT  A.PROV_ID, A.SEQ_NO,B.SPEC_CD,
    FROM  TABLEA  A,
          TABLEB  B   
   WHERE  A.PROV_ID = '12345'
     AND  A.SPEC_CD= B.SPEC_CD 
ORDER BY  A.SEQ_NUM


Code:
Current O/p
PROV_ID SEQ_NO   SPEC_CD
12345     1       AB
12345     2       CD
12345     3       EF


Code:
Expected Output
PROV_ID SEQ_NO   SPEC_1     SPEC_2
111        1       AB          CD

If we get single row as output, the expected ouput is
Code:
PROV_ID SEQ_NO   SPEC_1     SPEC_2
111        1       AB       <blanks>     

I have tried using LISTAGG function but is not working out.
Please help.

Thanks
Vinu
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2455
Location: Hampshire, UK

PostPosted: Thu Mar 09, 2017 3:51 pm
Reply with quote

Someone is sure to ask:
    What happened to the EF from the third row?
    Why has PROV_ID changed from 12345 to 111?
Back to top
View user's profile Send private message
vinu78

Active User


Joined: 02 Oct 2008
Posts: 179
Location: India

PostPosted: Thu Mar 09, 2017 4:06 pm
Reply with quote

Oh thanks Nic for pointing out that.
Sorry all.

PROV_ID is 12345 only and not 111(sorry, typo mistake)
I just want the first 2 row values to be in column fields and can ignore the third row value onwards.
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 INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts To get the count of rows for every 1 ... DB2 3
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts Multiple table unload using INZUTILB DB2 2
No new posts Grouping by multiple headers DFSORT/ICETOOL 7
Search our Forums:

Back to Top