Re: is there a distinct function for comma lists ?

From: Lew <noone(at)lewscanon(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: is there a distinct function for comma lists ?
Date: 2010-09-08 02:14:31
Message-ID: i66rhi$vpl$1@news.albasani.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On 09/07/2010 07:52 AM, Andreas wrote:
> Hi,
> is there a distinct function for comma separated lists ?
>
> I sometimes need to update tables where I got a set of IDs, like:
>
> update mytable
> set someattribute = 42
> where mytable.id in
> ( 1, 2, 3, 5, 7, 11, 3, 6, 13, 13, 3, 11 ... )
>
> So there are double entries in the list but in this case its just
> overhead but no problem.
>
> But for calculated values this would not allways be desirable.
>
> update mytable
> set someattribute = someattribute + 1
> where mytable.id in
> ( 1, 2, 3, 5, 7, 11, 3, 6, 13, 13, 3, 11 ... )
>
> How could I get a distinct list? Those lists can have 2000-3000 IDs
> sometimes.
>
> One solution was as follows but perhaps there is something more elegant?
>
> update mytable
> set someattribute = someattribute + 1
> where mytable.id in
> ( select distinct id from mytable where id in ( 1, 2, 3, 5, 7, 11, 3, 6,
> 13, 13, 3, 11 ... ) )

I am not clear on what you're asking here. From what you say, there's nothing
to do. The two forms of the SQL you show have the same result.

The fact that 11 or 13 or whatever appear in the IN list more than once
doesn't affect the result of the query; 13 is in the IN list no matter how
many times (> 0) that 13 appears in the IN list. So a row from mytable with
id=13 is selected regardless. It's not like the row will be selected more
than once.

From the manual:
'The result of IN is "true" if any equal subquery row is found.'
<http://www.postgresql.org/docs/8.4/interactive/functions-subquery.html>

It's still true of more than one equal subquery row is found. It's not true
multiple times, it's just true.

If mytable.id is not unique, then every row with that value will be selected,
but adding DISTINCT to the IN list won't change that either.

--
Lew

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Jann Röder 2010-09-08 13:35:24 Table returning functions
Previous Message Tom Lane 2010-09-07 20:31:39 Re: Sequential scan evaluating function for each row, seemingly needlessly