Re: Dublicates pairs in a table.

From: Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>
To: Richard Huxton <dev(at)archonet(dot)com>
Cc: Kevin Houle <kevin(at)houle(dot)org>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Dublicates pairs in a table.
Date: 2002-09-27 16:09:56
Message-ID: 20020927090810.X40745-100000@megazone23.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


On Fri, 27 Sep 2002, Richard Huxton wrote:

> On Wednesday 25 Sep 2002 2:10 am, Kevin Houle wrote:
> > I have the same issue with a table that currently holds well
> > over 600,000 rows. The case you left out is this:
> >
> > INSERT INTO test (c1,c2) VALUES('a','c');
> > INSERT INTO test (c1,c2) VALUES('c','a');
> >
> > I want that to fail, but I haven't been able to get it to fail
> > using unique indexes. I presume ordering is significant. Instead,
> > I am doing a SELECT prior to insert to insure the pair doesn't
> > already exist. If you've been able to get order-independent
> > pairs restricted to being unique using indexes, I'd like to know
> > about it. :-)
>
> Function defined as:
> CREATE FUNCTION ord_fn (text,text) RETURNS text AS '
> SELECT (CASE
> WHEN $1 < $2
> THEN $1 || $2
> ELSE $2 || $1
> END) as t;
> ' LANGUAGE SQL WITH (iscachable);

Note, that for a final system, you'll may want to also add a
delimiter that doesn't show up in $1 or $2 if ('a','ab') and
('aa','b') aren't supposed to cause an error.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Josh Berkus 2002-09-27 16:16:08 Re: Null not equal to '' (empty)
Previous Message Josh Berkus 2002-09-27 16:04:58 Re: Passing array to PL/SQL and looping