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

Query to get first row of a set


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

New User


Joined: 26 Jun 2009
Posts: 2
Location: US

PostPosted: Sat Jun 27, 2009 12:19 pm
Reply with quote

Hi,

One of my queries output is

Code:

Id       lower lmt     upper lmt
S1      0                 100
S1      0                 200
S1      0                 300
S1      100              200
S1      100              300
S1      200              300



I have pick the row containing lowest of upper lmt for a combination of Id and lower lmt.
Code:

Output should be:
S1     0          100
S1     100      200
S1     200      300

How to do this?

Help will be much appreciated.

Regards,
Deep
Back to top
View user's profile Send private message
vinay upadhyay

New User


Joined: 13 May 2007
Posts: 14
Location: chennai

PostPosted: Sat Jun 27, 2009 12:58 pm
Reply with quote

Please try this one and let me know


select * from table1 a where
a.upper_lmt =
(select min(upper_lmt) from table1
where lower_lmt = a.lower_lmt and id = a.id)
Back to top
View user's profile Send private message
sajjan jindal
Warnings : 1

New User


Joined: 09 Sep 2007
Posts: 60
Location: india

PostPosted: Thu Jul 02, 2009 1:37 pm
Reply with quote

Please check if the following query works.

select ID, lower lmt, MIN(UPPER lmt) as up lmt

from table1

group by ID, lower lmt.
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 RC query -Time column CA Products 3
No new posts Dynamically pass table name to a sele... DB2 2
No new posts Query on edit primary command CLIST & REXX 5
No new posts Query on edit primary command CLIST & REXX 1
No new posts Issue with EXEC CICS QUERY SECURITY c... CICS 6
Search our Forums:

Back to Top