Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Last Fri. of the Month ?
here it is..
SELECT NEXT_DAY(SYSDATE+(LAST_DAY(SYSDATE)-SYSDATE-7),'FRIDAY') FROM DUAL;
saurabh
----- Original Message -----
To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com>
Sent: Thursday, February 22, 2001 3:10 AM
>
> >
> >
> > 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).
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Saurabh Sharma INET: saurabhs_at_fcsltd.com 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 - 03:19:45 CST
![]() |
![]() |