Re: formating a select from a timestamp column - Mailing list pgsql-novice

From Andreas Kretschmer
Subject Re: formating a select from a timestamp column
Date
Msg-id 20051119080608.GA2325@kaufbach.delug.de
Whole thread Raw
In response to formating a select from a timestamp column  (stig erikson <stigerikson_nospam_@yahoo.se>)
List pgsql-novice
stig erikson <stigerikson_nospam_@yahoo.se> schrieb:

> hi i have a column that is declared as:
> datum timestamp DEFAULT ('now'::text)::timestamp(6) with time zone
>
>
> then i do:
> SELECT datum from table;
> and get something like: 2005-11-13 00:00:00
>
> i would like the output to be on the format: 2005-11-13
> how can i change it?

There are any ways. A simple way is to cast the timestamp to a date:

test=# select now();
              now
-------------------------------
 2005-11-19 09:05:06.750268+01
(1 Zeile)

test=# select now()::date;
    now
------------
 2005-11-19
(1 Zeile)



HTH, Andreas
--
Really, I'm not out to destroy Microsoft. That will just be a completely
unintentional side effect. (Linus Torvalds)
Kaufbach, Saxony, Germany, Europe.              N 51.05082°, E 13.56889°

pgsql-novice by date:

Previous
From: "A. Kretschmer"
Date:
Subject: Re: Logging
Next
From: A Gilmore
Date:
Subject: JOINing record returning function to query