Is anybody aware of a select or PL/SQL expression that I could use that would return the first ‘weekday’ of a Month?
Page 1 / 1
Hi
Look at this post, maybe it could helps You
Hi
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.