Oracle
 sql >> Database >  >> RDS >> Oracle

SQL con rango e partizione

Se feld1 è univoco all'interno di feld0 partizioni, potresti:

select  *
,       (
        select  count(*)
        from    YourTable yt2
        where   yt2.feld0 = yt1.feld0 -- Same partition
                and yt2.feld1 <= yt1.feld1 -- Lower or equal rank
        ) as ranking
from    YourTable yt1