> 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