Re: [ADMIN] date & time

Поиск
Список
Период
Сортировка
От tolik@icomm.ru (Anatoly K. Lasareff)
Тема Re: [ADMIN] date & time
Дата
Msg-id 87emn1fwsq.fsf@tolikus.hq.aaanet.ru
обсуждение исходный текст
Ответ на date & time  (hoelc <hoelc@pd.jaring.my>)
Список pgsql-general
>>>>> "h" == hoelc  <hoelc@pd.jaring.my> writes:

 h> Hello,
 h> Can some one please tell me how to set the date&time in the PostgreSQL
 h> system?
 h> I try to use date('now') and time('now') to keep tract of the data and
 h> time when the data is inserted or updated.  When I use sql " insert into
 h> table (data1, date_chg, time_chg) values ('abc',date('now'),time('now'))
 h> " to insert the date and time data, the data successfully inserted but
 h> when I retrive the data, it shows that the date and time is always "
 h> 01-01-2000 " and " 08:00:00 " , now is of couse not year 2000 and the
 h> time is also not 8 o'clock.  Why?  How should I correct this?
 h> I am using PostgreSQL in Linux system, and the date & time for Linux
 h> system are correct.

Yes, here is the problem:

tolik=> select date('now'), time('now');
      date|time
----------+--------
01-01-2000|03:00:00
(1 row)


Here is the solution:

tolik=> select date('now'::datetime), time('now'::datetime);
      date|time
----------+--------
03-07-1999|13:00:55
(1 row)

--
Anatoly K. Lasareff              Email:       tolik@icomm.ru
Senior programmer

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

Предыдущее
От: Anton de Wet
Дата:
Сообщение: Indexes and subqueries
Следующее
От: Ralf Weidemann
Дата:
Сообщение: servlet problem