| From: | "Christopher Kings-Lynne" <chriskl(at)familyhealth(dot)com(dot)au> |
|---|---|
| To: | "Markus Bertheau" <twanger(at)bluetwanger(dot)de>, "Wodzu" <wodzu(at)wodzus(dot)prv(dot)pl> |
| Cc: | <pgsql-hackers(at)postgresql(dot)org> |
| Subject: | Re: Week number |
| Date: | 2001-11-29 01:47:05 |
| Message-ID: | GNELIHDDFBOCMGBFGEFOAEJJCAAA.chriskl@familyhealth.com.au |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | 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
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Christopher Kings-Lynne | 2001-11-29 01:58:58 | Re: FW: [ppa-dev] Severe bug in debian - phppgadmin opens up |
| Previous Message | Christopher Kings-Lynne | 2001-11-29 01:43:41 | Re: Week number |