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

Comment gérer la limite d'imbrication profonde à 1 niveau dans Oracle ?

Mon approche serait de générer un nombre fixe de dates à partir de sysdate -1 décroissant, puis de travailler dessus. Dans l'extrait suivant, j'ai choisi 100. Une fois que vous avez la bonne date, utilisez-la simplement pour filtrer sur table1.

select dates 
  from (
  select rownum as rn, 
         dates 
    from (
    select x.dates, 
           nvl2(h.holiday_from,'T','F') as hd, 
           decode (to_char(x.dates,'D')-1,6,'T',7,'T','F') as WE 
      from (
      select trunc(sysdate) - rownum as dates
        from dual d
     connect By rownum <= 100 -- change this number if you plan on having long holidays
           ) x 
    left outer join holidays h
      on x.dates between h.holiday_fromand h.holiday_to
         )
   where hd = 'F' and WE = 'F' -- exclude holidays and weekends
       )
 where rn = 14; -- return the 14th working day from now