Re: Retrieve month from date in SQl query

From: Michael Fuhr <mike(at)fuhr(dot)org>
To: RPK <rpk(dot)general(at)gmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Retrieve month from date in SQl query
Date: 2007-04-23 07:41:31
Message-ID: 20070423074131.GA75312@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Wed, Apr 18, 2007 at 10:36:14AM -0700, RPK wrote:
> I have a table called "StudentFeesPayment" with columns "ReceiptNo" and
> "ReceiptMonthYear".
> The column, "ReceiptMonthYear" stores date in the format "yyyy-mm-dd". I
> have to find the max(ReceiptNo) where Month of (ReceiptMonthYear)=4. Or
> whatever month I give.
>
> I tried:
>
> Select max(ReceiptNo) from StudentFeesPayment where
> Extract(Month('ReceiptMonthYear'))=4;
>
> But it is not working. How to do it?

Please explain how it's not working -- how does the result differ
from your expectation? I'd guess you're getting a syntax error;
see the documentation for the correct way to use extract():

http://www.postgresql.org/docs/8.2/interactive/functions-datetime.html#FUNCTIONS-DATETIME-EXTRACT

--
Michael Fuhr

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Dmitry Turin 2007-04-23 08:20:45 Re: We all are looped on Internet: request + transport = invariant
Previous Message Bart Degryse 2007-04-23 07:00:12 Re: Fwd: Re[2]: We all are looped on Internet: request + transport = invariant