I have a complex query with group by and order by clause and I need a sorted row number (1...2...(n-1)...n) returned with every row. Using a ROWNUM (value is assigned to a row after it passes the predicate phase of the query but before the query does any sorting or aggregation) gives me a non-sorted list (4...567...123...45...). I cannot use application for counting and assigning numbers to each row.
|
|
|
|
|
|
|
Is there a reason that you can't just do
|
||||||
|
|
|
I also sometimes do something like:
|
||
|
|
|
|
Assuming that you're query is already ordered in the manner you desire and you just want a number to indicate what row in the order it is:
and replace "Colx" with the names of the columns in your query. |
||
|
|
|
|
Can you use an in-line query? ie
|
||
|
|
|
|
You could do it as a subquery, so have: select q.*, rownum from (select... group by etc..) q That would probably work... don't know if there is anything better than that. |
||
|
|
