Re: novice question about current_time()

Поиск
Список
Период
Сортировка
От Christoph Dalitz
Тема Re: novice question about current_time()
Дата
Msg-id 20021104170241.5f50adc7.christoph.dalitz@hs-niederrhein.de
обсуждение исходный текст
Ответ на novice question about current_time()  ("Johnson, Shaunn" <SJohnson6@bcbsm.com>)
Список pgsql-general
> Date: Mon, 4 Nov 2002 10:46:00 -0500
> From: "Johnson, Shaunn" <SJohnson6@bcbsm.com>
>
> I have a query where I'd like to know how much time
> has passed from me launching and ending the query.
>
> So, in the script, I have:
>
> [snip]
> select 'begin', current_time();
> [/snip]
>
> What seems to be happening is that when I launch the
> script, it hangs ... nothing seems to be happening.  I
>
This is a consequence of a brain dead ANSI SQL standard which tries to make
SQL as similiar to spoken English as possible (eg. CAST(bla AS int) etc.).

ANSI-SQL requires the ommittance of the parenthesis. Thus the
following should work:

select 'begin', current_time;

Christoph Dalitz

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

Предыдущее
От: Jean-Luc Lachance
Дата:
Сообщение: Re: unique in two not so unique columns
Следующее
От: Chris Gamache
Дата:
Сообщение: Re: copy limited number of records