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?