Re: Problems with distinct

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Problems with distinct
Дата
Msg-id 3717.1139858520@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Problems with distinct  (Andreas Joseph Krogh <andreak@officenet.no>)
Ответы Re: Problems with distinct  (Andreas Joseph Krogh <andreak@officenet.no>)
Список pgsql-sql
Andreas Joseph Krogh <andreak@officenet.no> writes:
> Any idea why this works:
> SELECT distinct(g.groupname), g.id, g.p_id FROM onp_group g, onp_group g2
> WHERE g.id IN(SELECT g2.id UNION SELECT group_id FROM onp_group_children WHERE 
> child_id = g2.id)
> AND g2.id IN(1,2,109,105, 112);

> And not this:

> SELECT g.id, g.p_id, distinct(g.groupname) FROM onp_group g, onp_group g2
> WHERE g.id IN(SELECT g2.id UNION SELECT group_id FROM onp_group_children WHERE 
> child_id = g2.id)
> AND g2.id IN(1,2,109,105, 112);

DISTINCT is not a function, it's a modifier attached to SELECT.  The
parentheses in your first example are a no-op.
        regards, tom lane


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

Предыдущее
От: Andreas Joseph Krogh
Дата:
Сообщение: Problems with distinct
Следующее
От: "Owen Jacobson"
Дата:
Сообщение: Re: Problems with distinct