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

How to fetch the first record of each group of records?


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

New User


Joined: 30 May 2007
Posts: 2
Location: india

PostPosted: Thu Oct 25, 2007 7:45 pm
Reply with quote

Hi,

I've a work request for which I need to retrieve the first row of each group of rows.

ColA ColB
a aaaaa
a aaa
b bb
b bbb
c cc
c cccc
c ccc

I want the output as

ColA ColB
a aaaaa
b bb
c cc

Can this be acheived by a single sql statement in DB2? I've tried searching the previous posts without success.

Sri..
Back to top
View user's profile Send private message
Craq Giegerich

Senior Member


Joined: 19 May 2007
Posts: 1512
Location: Virginia, USA

PostPosted: Thu Oct 25, 2007 8:25 pm
Reply with quote

What defines the FIRST row of each group, is it colB, the order they were entered into the database, or some secret number? First, last, and ect. without something defining the order have not meaning with databases.
Back to top
View user's profile Send private message
srisyam

New User


Joined: 30 May 2007
Posts: 2
Location: india

PostPosted: Fri Oct 26, 2007 9:55 am
Reply with quote

Thank you.

Per my requirement it is enough if it fetches any one row out of the group of rows and It worked using the following query

SELECT DISTINCT COLA,MIN(COLB)
FROM TABLE
GROUP BY COLA

Regards, Sri..
Back to top
View user's profile Send private message
shashikalayellenki

New User


Joined: 15 Oct 2007
Posts: 1
Location: chennai

PostPosted: Fri Oct 26, 2007 1:47 pm
Reply with quote

we can use fetch first one rows only in the cursor then we get the result right .
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 Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts FINDREP - Only first record from give... DFSORT/ICETOOL 3
Search our Forums:

Back to Top