Re: problem with distinct not distincting... - Mailing list pgsql-general

From Merlin Moncure
Subject Re: problem with distinct not distincting...
Date
Msg-id CAHyXU0xM94qiayMDV_pzeAr=ATjqRK5m1WYs3cQz1CvivxDW0w@mail.gmail.com
Whole thread Raw
In response to problem with distinct not distincting...  (John Beynon <john@kyan.com>)
List 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 by date:

Previous
From: "Daniel Serodio (lists)"
Date:
Subject: Re: allow servers to access to the same data
Next
From: Tulio
Date:
Subject: Re: allow servers to access to the same data