Re: problem with distinct not distincting...

Поиск
Список
Период
Сортировка
От Merlin Moncure
Тема Re: problem with distinct not distincting...
Дата
Msg-id CAHyXU0xM94qiayMDV_pzeAr=ATjqRK5m1WYs3cQz1CvivxDW0w@mail.gmail.com
обсуждение исходный текст
Ответ на problem with distinct not distincting...  (John Beynon <john@kyan.com>)
Список pgsql-general
On Wed, Oct 17, 2012 at 5:48 AM, John Beynon <john@kyan.com> wrote:
> I have a pretty basic query;
>
> select distinct on (name) name, length(name) from
> drugs
> where customer_id IS NOT NULL
> order by name;
>
> which I'd expect to only return me a single drug name if there are
> duplicates, yet I get
>
> name | length
> ==========
> Roaccutane | 10
> Roaccutane | 10
>
> table encoding is UTF8...
>
> I'm scratching my head!

as a sanity check, try:

select distinct on (name) name, length(name), md5(name) from
drugs
where customer_id IS NOT NULL
order by name;

merlin


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

Предыдущее
От: "Daniel Serodio (lists)"
Дата:
Сообщение: Re: allow servers to access to the same data
Следующее
От: Tulio
Дата:
Сообщение: Re: allow servers to access to the same data