Re: Week of the Year?

From: "Brian C(dot) Doyle" <bcdoyle(at)mindspring(dot)com>
To: jmckown(at)prodigy(dot)net
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Week of the Year?
Date: 2000-09-03 11:25:23
Message-ID: 4.3.2.7.2.20000903072517.00c90b00@pop
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

John,

Would you have any clue how to figure out the first saturday of any month -
6 days and the last saturday of that month?

I know that this seems odd but i have to run reports for "Non Standard
Months" and well I am clueless.

At 09:55 PM 8/11/00 -0500, you wrote:

>Try using the function date_part such as:
>
>select date_part('week',now());
>
>"and the days that are in that week" I guess want to answer a question
>such as:
>Given a date, what is first date in that same week, and what is the last
>date in that week. There are a couple of approaches to this. My first was:
>
>select
>to_date(date_part('year',now()),'YYYY')+(7*date_part('week',now()));
>
>and the above +6 to the the last day of the week. Another approach for
>this same question is much simplier (if the question is indeed what you
>are asking)
>
>select now()-date_part('dow',now());
>
>This last select gives the Sunday for the current week. To get the
>Saturday, simply:
>
>select now()-date_part('dow',now())+6;
>
>Of course, replace the now() with whatever contains the date or timestamp.
>
>John McKown
>
> > I'm probably staring right at it. (One of the difficulties with RTFMing, is
> > having too many docs!)
> >
> > Is there anything in the API that produces the week of the year, from 1 to
> > 52 or 53 depending on the week of the year, and the days that are in that
> > week?
> >
> > Many thanks.
> >
> > -dlj.
> >
> >
> >

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message John McKown 2000-09-03 18:07:32 Re: Week of the Year?
Previous Message Jon Lapham 2000-09-01 18:31:38 Re: Query-ing arrays