Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Numbering rows without window functions

In Postgresql 8.2 I want to sequentially number rows. I have the table t at SQL Fiddle:

    c 
   ---
    3
    2

I want this:

    c | i 
   ---+---
    2 | 1
    3 | 2

I tried this:

select *
from
    (select c from t order by c) s
    cross join
    generate_series(1, 2) i

And got:

    c | i 
   ---+---
    2 | 1
    3 | 1
    2 | 2
    3 | 2
like image 234
Clodoaldo Neto Avatar asked Dec 27 '25 16:12

Clodoaldo Neto


1 Answers

The only thing I can think of is a sequence. You could do something like this:

drop sequence if exists row_numbers;
create temporary sequence row_numbers;

select next_val('row_numbers'), dt.c
from (select c from t order by c) as dt;

I'd throw a drop sequence row_numbers in as well but the temporary should take care of that if you forget.

This is a bit cumbersome but you might be able to wrap it in a function to hide some of the ugliness.

Keep in mind that 8.2 is no longer supported but 8.4 is and 8.4 has window functions.


References (8.2 versions):

  • CREATE SEQUENCE
  • DROP SEQUENCE
like image 79
mu is too short Avatar answered Dec 30 '25 07:12

mu is too short