Re: How to cast, if type has spaces in the name

From: "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: How to cast, if type has spaces in the name
Date: 2007-07-26 07:42:53
Message-ID: 20070726074253.GC18616@a-kretschmer.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

am Thu, dem 26.07.2007, um 0:33:09 -0700 mailte Bryce Nesbitt folgendes:
> How do I specify a cast, if the type name has spaces? foo::integer is
> easy,
> but foo::'timestamp without time zone' is more murky.

Hehe, it works without the ', see:

test=# select '2007-01-01'::timestamp without time zone;
timestamp
---------------------
2007-01-01 00:00:00
(1 row)

test=*# select '2007-01-01'::timestamp with time zone;
timestamptz
------------------------
2007-01-01 00:00:00+01
(1 row)

ndreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Ranieri Mazili 2007-07-26 14:26:35 Tunning PostgreSQL performance for views on Windows
Previous Message A. Kretschmer 2007-07-26 07:39:18 Re: How to cast, if type has spaces in the name