sql >> Database >  >> RDS >> Oracle

Hoe om te gaan met 1 niveau diepe nesting limiet in Oracle?

Mijn benadering zou zijn om een ​​vast aantal datums te genereren vanaf sysdate -1 aflopend en er vervolgens aan te werken. In het volgende fragment heb ik 100 gekozen. Zodra je de juiste datum hebt, gebruik je deze om op tabel 1 te filteren.

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


  1. Indexen hernoemen met sp_rename Procedure

  2. Hoe de primaire sleutel voor automatisch verhogen in PostgreSQL in te stellen?

  3. UPDATE met ORDER BY

  4. Php meerdere db-omgeving met git &phpfog