Re: [SQL] CURRENT_TIMESTAMP

Поиск
Список
Период
Сортировка
От Manfred Koizar
Тема Re: [SQL] CURRENT_TIMESTAMP
Дата
Msg-id cum2puo8d0clhbc5mvs6ju22bai3h2tood@4ax.com
обсуждение исходный текст
Ответ на Re: [SQL] CURRENT_TIMESTAMP  (Bruce Momjian <pgman@candle.pha.pa.us>)
Ответы Re: [SQL] CURRENT_TIMESTAMP  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-general
On Tue, 24 Sep 2002 17:56:51 -0400 (EDT), Bruce Momjian
<pgman@candle.pha.pa.us> wrote:
>Can you run a test:
>
>    BEGIN;
>    SELECT CURRENT_TIMESTAMP;
>    wait 5 seconds
>    SELECT CURRENT_TIMESTAMP;
>
>Are the two times the same?

MS SQL 7:
    begin transaction
    insert into tst values (CURRENT_TIMESTAMP)
    -- wait
    insert into tst values (CURRENT_TIMESTAMP)
    commit
    select * from tst

    t
    ---------------------------
    2002-09-24 09:49:58.777
    2002-09-24 09:50:14.100

Interbase 6:
    SQL> select current_timestamp from rdb$database;

    =========================
    2002-09-24 22:30:13.0000

    SQL> select current_timestamp from rdb$database;

    =========================
    2002-09-24 22:30:18.0000

    SQL> commit;

Servus
 Manfred

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

Предыдущее
От: Adrian von Bidder
Дата:
Сообщение: Re: OID order = INSERT order?
Следующее
От: Murali Mohan Kasetty
Дата:
Сообщение: Re: Administrator issue