Oracle
 sql >> Base de données >  >> RDS >> Oracle

Trouver le nombre maximal d'années consécutives pour chaque ID dans une table (Oracle SQL)

Cela produira le résultat souhaité :

select
  id,
  ayear,
  byear,
  yeardiff
from
(
  select
    a.id,
    a.year ayear,
    b.year byear,
    (b.year - a.year)+1 yeardiff,
    dense_rank() over (partition by a.id order by (b.year - a.year) desc) rank
  from
    years a
    join years b on a.id = b.id 
        and b.year > a.year
  where
    b.year - a.year = 
      (select count(*)-1
         from years a1
        where a.id = a1.id
             and a1.year between a.year and b.year)
)
where
  rank = 1

MODIFIER mis à jour pour afficher les années de début/fin de la plus longue période.

SQLFiddle