Re: integrity of column used to order rows - Mailing list pgsql-sql

From Ed L.
Subject Re: integrity of column used to order rows
Date
Msg-id 200303190950.45766.pgsql@bluepolka.net
Whole thread Raw
In response to integrity of column used to order rows  (cliff@cliffmeyers.com)
List pgsql-sql
On Wednesday March 19 2003 9:18, cliff@cliffmeyers.com wrote:
>
> What I want to be able to do is make sure that at all times the child
> records linked to a parent record have values for the "rank" field that
> are consecutive starting at 1, ie (1,2,4,5,6) not (1,2,4,5,7).
>
> Can someone offer the best suggestion to do this?

This is certainly possible via a triggered PL/pgSQL function.  Of course,
whether or not it is feasible w/r/t performance or exactly how you choose
to set the ranks depends on your context.  If you have appropriate indices
on the foreign key to the parent table, the overall size of the table is
probably irrelevant; use of the index would allow you to avoid traversal of
the entire table.  You also have the option of writing the function in C to
get better performance.

Ed




pgsql-sql by date:

Previous
From: cliff@cliffmeyers.com
Date:
Subject: integrity of column used to order rows
Next
From: Carmen Sarlo
Date:
Subject: Re: Poor performance on a right join