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

need help on query...


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

New User


Joined: 22 Aug 2006
Posts: 17
Location: India Kolkata

PostPosted: Thu Dec 14, 2006 12:47 pm
Reply with quote

hi all,
I have a table say table1 having column (x,y and z) and data as below.
x y z
----------------------------
a b c
a1 b1 c1
a1 b1 c1
a1 b1 c1

a1 b1 c12
a2 b2 c2
How can I get all the rows marked bold above. i.e where prev value of all the columns (x, y,z) is equal to the next value of of column (x,y,z)
Back to top
View user's profile Send private message
Rajen

New User


Joined: 05 May 2005
Posts: 61

PostPosted: Thu Dec 14, 2006 1:29 pm
Reply with quote

Hi j_rymbei
From your test data it seems like in the desired result you can have 3 rows of the same value.

Here
a1 b1 c1
a1 b1 c1
a1 b1 c1 all 3 rows are of same value.

And one more thing instead of a1 b1 c1 and a2 b2 c2, can you please give us some real data. that would be very helpful.

Thanks,
Rajen Patel.
Back to top
View user's profile Send private message
j_rymbei

New User


Joined: 22 Aug 2006
Posts: 17
Location: India Kolkata

PostPosted: Thu Dec 14, 2006 2:11 pm
Reply with quote

Yes they are of same value..I have found the solution to get the data..
just to share with you..might be useful..
select x,y,z count (*) from table1
group by x,y,z
having count (*) > 1;
Back to top
View user's profile Send private message
ovreddy

Active User


Joined: 06 Dec 2004
Posts: 211
Location: Keane Inc., Minneapolis USA.

PostPosted: Mon Dec 18, 2006 7:05 pm
Reply with quote

Hi,

One small correction to the above query...

select x,y,z, count (*) from table1
group by x,y,z
having count (*) = 3 ;

This will fetch the rows which have identical data in 3 rows but may not be in sequence. If you want them to be in sequence then we need to use program logic.

Bye,
Reddy
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