79707207

Date: 2025-07-19 11:46:27
Score: 1.5
Natty:
Report link

it is very easy task, i created one at festivos en calendario

create table calendar (dt, holiday) as
      select trunc(sysdate, 'yy') + level - 1,
        case when trunc(sysdate, 'yy') + level - 1 in ( select  holiday_date
     from  holidays
      )   then 'Y'
             else 'N'
        end
      from dual
      connect by level <= trunc(sysdate) - trunc(sysdate, 'yy') + 1;
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ruth