Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Last Fri. of the Month ?
>
>
> Given Any Date , How to Deduce the Date for the Last Fri. of the SAME Month
> ?
>
how about
next_day(last_day(date) - 7, 'Friday')
where date is the given date?
for example to find the last Friday of the month select next_day(last_day(sysdate) - 7, 'Friday') from dual;
Pat
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Pat Hildebrand INET: pat_at_ssc.upenn.edu Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Thu Feb 22 2001 - 02:42:16 CST