Re: formating a select from a timestamp column

Поиск
Список
Период
Сортировка
От Andreas Kretschmer
Тема Re: formating a select from a timestamp column
Дата
Msg-id 20051119080608.GA2325@kaufbach.delug.de
обсуждение исходный текст
Ответ на formating a select from a timestamp column  (stig erikson <stigerikson_nospam_@yahoo.se>)
Список 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 по дате отправления:

Предыдущее
От: "A. Kretschmer"
Дата:
Сообщение: Re: Logging
Следующее
От: A Gilmore
Дата:
Сообщение: JOINing record returning function to query