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

Home -> Community -> Usenet -> comp.databases.oracle -> Re: Finding first saturday of month

Re: Finding first saturday of month

From: Bill Smith <hondafixer_at_hotmail.com>
Date: 2 Mar 2004 13:08:06 -0800
Message-ID: <13b8fdd5.0403021308.16fe10ba@posting.google.com>

logicjello_at_netscape.net (Solomon Grundy) wrote in message news:<6ad4e542.0402271226.6f8d8e63_at_posting.google.com>...
> Select trunc(sysdate,'MM')
> from dual
> of course gives me the first day of the month, may I ask what the
> query is to find the first saturday of the month?

Try this
select trunc(sysdate,'mm')+(7- to_char(trunc(sysdate,'mm'),'d')) first_sat  from dual;

Replace sysdate with any date. Received on Tue Mar 02 2004 - 15:08:06 CST

Original text of this message

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