-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of anru chen Sent: Friday, 7 September 2007 15:23 To: pgsql-sql@postgresql.org Subject: [SQL] to_date function
> Hi all: > > i am use postgres 8.2 on windows XP, following select statement > > "select to_date('10 August 2007','DD Month YYYY');" > return me 0007-08-10, > > if i do "select to_date('10 September 2007','DD Month YYYY');" > result is correct 2007-09-10 Try using TO_CHAR instead of TO_DATE if it's just for display purposes (I assume it is) If it's for comparison purposes, then just cast to a date either by CAST('10 August 2007' AS date) or '10 August 2007'::DATE ~p THINK BEFORE YOU PRINT - Save paper if you don't really need to print this *******************Confidentiality and Privilege Notice******************* The material contained in this message is privileged and confidential to the addressee. If you are not the addressee indicated in this message or responsible for delivery of the message to such person, you may not copy or deliver this message to anyone, and you should destroy it and kindly notify the sender by reply email. Information in this message that does not relate to the official business of Weatherbeeta must be treated as neither given nor endorsed by Weatherbeeta. Weatherbeeta, its employees, contractors or associates shall not be liable for direct, indirect or consequential loss arising from transmission of this message or any attachments e-mail. ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly