Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Merging consecutive rows of a table

600625Sep 30 2007 — edited Nov 4 2010
I want to merge consecutive rows of a table. i.e. if my table has 4 rows of data then my ouput of query will have only 3 rows because
rows 1 and 2 are merged to first row of result
rows 2 and 3 are merged to second row of result
rows 3 and 4 are merged to third row of result

For example if my table is
____
A | B
-------
1 | 4
9 | 7
3 | 2
7 | 9

then output of query should be
____________
A | B |A1| B1
---------------------
1 | 4 | 9 | 7
9 | 7 | 3 | 2
3 | 2 | 7 | 9

How can i write a query to achieve this?

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Oct 29 2007
Added on Sep 30 2007
17 comments
7,439 views