Re: to_date function

Поиск
Список
Период
Сортировка
От Phillip Smith
Тема Re: to_date function
Дата
Msg-id 00a001c7f116$d0d5b730$9b0014ac@wbaus090
обсуждение исходный текст
Ответ на to_date function  ("anru chen" <ctx2002@gmail.com>)
Список pgsql-sql
-----Original Message-----
From: pgsql-sql-owner@postgresql.org [mailto:pgsql-sql-owner@postgresql.org]
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.


В списке pgsql-sql по дате отправления:

Предыдущее
От: "anru chen"
Дата:
Сообщение: to_date function
Следующее
От: "A. Kretschmer"
Дата:
Сообщение: Re: to_date function