Re: We are not following the spec for HAVING without GROUP BY

Поиск
Список
Период
Сортировка
От Jaime Casanova
Тема Re: We are not following the spec for HAVING without GROUP BY
Дата
Msg-id c2d9e70e05031012143fddf4c1@mail.gmail.com
обсуждение исходный текст
Ответ на Re: We are not following the spec for HAVING without GROUP BY  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: [BUGS] We are not following the spec for HAVING without GROUP  (John R Pierce <pierce@hogranch.com>)
Список pgsql-hackers
On Thu, 10 Mar 2005 12:44:50 -0500, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> Would those of you with access to other DBMSes try this:
> 
On informix 9.21.UC4

> create table tab (col integer);
> select 1 from tab having 1=0;
>
returns no rows

> select 1 from tab having 1=1;
>
returns no rows

> insert into tab values(1);
> insert into tab values(2);
> select 1 from tab having 1=0;
> 
returns no rows

> select 1 from tab having 1=1;
> 
returns 2 rows

regards, 
Jaime Casanova


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

Предыдущее
От: johnnnnnn
Дата:
Сообщение: Re: We are not following the spec for HAVING without GROUP BY
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: [pgsql-hackers-win32] Repleacement for src/port/snprintf.c