Re: Week number - Mailing list pgsql-hackers

From Christopher Kings-Lynne
Subject Re: Week number
Date
Msg-id GNELIHDDFBOCMGBFGEFOAEJJCAAA.chriskl@familyhealth.com.au
Whole thread Raw
In response to Re: Week number  (Markus Bertheau <twanger@bluetwanger.de>)
List pgsql-hackers
> Then pgsql-novice is the correct list to ask this kind of question.
> > I want to obtain current week number.
> > Under PHP I try:
> >
> > $query = "SELECT EXTRACT(WEEK FROM NOW)";
> > $result= pg_exec($dbconn,$query);
>
> select date_part('week', CURRENT_TIMESTAMP);

I'll just point out that using date_part isn't ANSI SQL, you should use the
EXTRACT function, and the CURRENT_DATE, CURRENT_TIME and CURRENT_TIMESTAMP
variables.

Chris



pgsql-hackers by date:

Previous
From: "Jim Buttafuoco"
Date:
Subject: Re: 7.2beta3 on Digital Alpha
Next
From: "Christopher Kings-Lynne"
Date:
Subject: Re: Week number