Re: [SQL] DEFAULT TEXT 'now'

Поиск
Список
Период
Сортировка
От Howie
Тема Re: [SQL] DEFAULT TEXT 'now'
Дата
Msg-id Pine.LNX.3.96.990324020819.12713F-100000@brap-eth0.toodarkpark.org
обсуждение исходный текст
Ответ на DEFAULT TEXT 'now'  (Roberto Joao Lopes Garcia <roberto@mha.com.br>)
Список pgsql-sql
On Tue, 23 Mar 1999, Roberto Joao Lopes Garcia wrote:

> Hi
>
> I�m have a table like bellow:
>
> CREATE TABLE conex (
>     id int4 PRIMARY KEY DEFAULT NEXTVAL('seq_conex'),
>
>     inicio datetime DEFAULT TEXT 'now',
>     ultimo datetime DEFAULT TEXT
> 'now',
>                  .
>                  .
>                  .
> )
>
> insert into conex (ip) values(�200.200.200.200�)
>
> Will result every time the same data and time for �inicio� and �ultimo�!
>
> I want to insert the current date and time. Is that code correct and the
> result a bug???
> Is there an way to make the DEFAULT work???

try:

...
inicido DATETIME DEFAULT NOW(),
ultimo  DATETIME DEFAULT NOW(),
...

---
Howie <caffeine@toodarkpark.org>   URL: http://www.toodarkpark.org
  "You can change the world with a bullet in the right place"


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

Предыдущее
От: Roberto Joao Lopes Garcia
Дата:
Сообщение: DEFAULT TEXT 'now'
Следующее
От: tolik@icomm.ru (Anatoly K. Lasareff)
Дата:
Сообщение: Re: [SQL] DEFAULT TEXT 'now'