Re: timestamps

Поиск
Список
Период
Сортировка
От Steven Klassen
Тема Re: timestamps
Дата
Msg-id 20041214163511.GA21117@commandprompt.com
обсуждение исходный текст
Ответ на timestamps  (Martin Atukunda <matlads@myrealbox.com>)
Ответы Re: timestamps  (Martin Atukunda <matlads@myrealbox.com>)
Список pgsql-novice
# The schema for translog is as follows:
#
# CREATE TABLE translog (
#  id serial,
#  action integer,
#  sdate varchar(16) NOT NULL,
#  stime varchar(16) NOT NULL
# );

I assume you mean the composite sdate/stime is 1 minute ago?

Instead of storing separate date & time varchar fields, why don't you
store one timestamp field?  Then a query like this would work:

SELECT * FROM translog WHERE start <= (now() - '1 minute'::interval);

--
Steven Klassen - Lead Programmer
Command Prompt, Inc. - http://www.commandprompt.com/
PostgreSQL Replication & Support Services, (503) 667-4564

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

Предыдущее
От: Andreas Kretschmer
Дата:
Сообщение: Re: [despammed] timestamps
Следующее
От: Afton & Ray Still
Дата:
Сообщение: Re: basic download and setup questions