Re: Numerar filas

From: Anthony Rafael Sotolongo Leon <asotolongo(at)uci(dot)cu>
To: Julio Avila <avila(dot)albornoz(at)gmail(dot)com>
Cc: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: Numerar filas
Date: 2011-05-27 17:08:32
Message-ID: 1470348175.4930991306516112731.JavaMail.root@ucimail1.uci.cu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

o tal vez con algun cambio como este(ordenando por valor)
algo asi :
select ficha, valor, row_number() over (partition by ficha order by valor) from nombretabla

saludos

----- Mensaje original -----
De: "Julio Avila" <avila(dot)albornoz(at)gmail(dot)com>
Para: pgsql-es-ayuda(at)postgresql(dot)org
Enviados: Viernes, 27 de Mayo 2011 12:51:32 GMT -04:00 Georgetown
Asunto: [pgsql-es-ayuda] Numerar filas

Estimados.
Deseo hacer un select que arroje algo asi.

ficha | obs | valor
-------------------------
233 | 1 | 1.26
233 | 2 | 1.56
233 | 3 | 1.25
256 | 1 | 1.26
256 | 2 | 1.33
256 | 3 | 1.34
256 | 4 | 1.44
256 | 5 | 1.65

La idea es numerar las filas agrupadas en cada ficha.

Saludos Julio

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Alvaro Herrera 2011-05-27 18:01:39 Re: urgente!!! restore
Previous Message Anthony Rafael Sotolongo Leon 2011-05-27 17:01:05 Re: Numerar filas