Retrieve month from date in SQl query

From: RPK <rpk(dot)general(at)gmail(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Retrieve month from date in SQl query
Date: 2007-04-18 17:36:14
Message-ID: 10063035.post@talk.nabble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


I am using PGSQL 8.2.3 on Windows XP.

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?
--
View this message in context: http://www.nabble.com/Retrieve-month-from-date-in-SQl-query-tf3602302.html#a10063035
Sent from the PostgreSQL - sql mailing list archive at Nabble.com.

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Stuart McGraw 2007-04-18 18:16:37 slowness when subselect uses DISTINCT
Previous Message Senthil 2007-04-18 08:42:24 Windows postgres