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.

Group records in a Select

RumburakAug 16 2010 — edited Aug 16 2010

I want to know, if I can do this with one single Select:

I have a table where I have some Information with a date-col:

Column1  Column2  Column3  DateCol
-------
A        B        C        10/2001
A        B        C        03/2001
B        B        C        02/2001
B        B        C        01/2001
A        B        C        03/2000

Now I want to group the combinations of col1-3 but in the date order. This should be the result:

Column1  Column2  Column3  DateCol
-------
A        B        C        10/2001
B        B        C        02/2001
A        B        C        03/2000

Any ideas?

This post has been answered by Frank Kulash on Aug 16 2010
Jump to Answer

Comments

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

Post Details

Locked on Sep 13 2010
Added on Aug 16 2010
12 comments
1,502 views