Question

First working day of the Month

  • 10 November 2022
  • 2 replies
  • 70 views

Userlevel 3
Badge +9

Is anybody aware of a select or PL/SQL expression that I could use that would return the first ‘weekday’ of a Month?


2 replies

Userlevel 5
Badge +15

Hi @JamesW72

 

Look at this post, maybe it could helps You

 

 

Userlevel 7
Badge +22

Hi @knepiosko 

try this to find the weekday: 

Select to_char(trunc(sysdate, 'MM'), 'Day') from dual;

Try this to find the date: 

Select trunc(sysdate, 'MM') as "First day" from dual;

Reply