Re: Splitting Timestamps

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Splitting Timestamps
Дата
Msg-id 20060725170352.GB19297@surnet.cl
обсуждение исходный текст
Ответ на Splitting Timestamps  ("Chris Hoover" <revoohc@gmail.com>)
Ответы Joining dates/times (was Re: Splitting Timestamps)
Список pgsql-general
Chris Hoover wrote:
> I have several columns in my database that are timestamps.  My developers
> are asking me how to split the timestamp so that they can look at either the
> date or at the time portion.
>
> I know I can do a select to_date(now(),'yyyy-mm-dd') and it will return the
> date.  However, how do I get the time?  Also, is this the proper way to get
> the date portion of a timestamp?

select now()::timetz;
select now()::time;
select now()::date;

--
Alvaro Herrera                                http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

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

Предыдущее
От: "Chris Hoover"
Дата:
Сообщение: Splitting Timestamps
Следующее
От: "A. Kretschmer"
Дата:
Сообщение: Re: Splitting Timestamps