Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: first day of week

Re: first day of week

From: Hanspeter 'Happl' Oberlin <happl_at_mail.com>
Date: Tue, 19 Mar 2002 17:17:22 +0100
Message-ID: <a77oah$uq7$1@newsreader.mailgate.org>


In article <3C9743D7.46C408DE_at_dund-land.de>,  Volker Graubaum <volker_at_dund-land.de> wrote:

>I need the first day of an Isoweek as date.

select next_day(sysdate, 'Monday') from dual;

>Who can help?

You want the monday of the next week, but from the past year?

select next_day(add_months(sysdate,-12),'Monday') from dual;

Greetings from Switzerland -- Gruesse aus der Schweiz Happl Received on Tue Mar 19 2002 - 10:17:22 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US