Re: How to quote date value?

From: "nobody" <nobody(at)nowhere(dot)near(dot)here>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: How to quote date value?
Date: 2003-11-21 10:53:31
Message-ID: bpkqrd$2p0n$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I have found it in documentation, it is single quote. But it does not
explain why

SELECT '1/11/2003' AS "InvoiceDate";

returns "unknown" data type instead of "date".

"nobody" <nobody(at)nowhere(dot)near(dot)here> wrote in message
news:bpkmg7$2aj3$1(at)news(dot)hub(dot)org(dot)(dot)(dot)
> What is correct character to quote date values in SELECT. Is is single
> quote?
>
> When I do:
>
> SELECT '1/11/2003' AS "InvoiceDate";
>
> the returned value is of unknown type (not a date).
>
> Then I tried:
>
> SELECT 1/11/2003 AS "InvoiceDate";
>
> and the InvoiceDate was set to zero (I guess the engine divided the
numbers
> in date).
>
> Then I tried:
>
> SELECT 1-11-2003 AS "InvoiceDate";
>
> and the numbers in date value got substracted.
>
> Using PostgreSQL 7.4 and PgAdmin 3.
>
> Any insight is welcome.
>
>

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Christoph Haller 2003-11-21 11:05:57 Re: Need another way to do this, my sql much to slow...
Previous Message nobody 2003-11-21 09:39:18 How to quote date value?