Re: How do I create unique IDs for an existing set of records - Mailing list pgsql-sql

From Tom Lane
Subject Re: How do I create unique IDs for an existing set of records
Date
Msg-id 26777.1019837679@sss.pgh.pa.us
Whole thread Raw
In response to How do I create unique IDs for an existing set of records  ("Nick Fankhauser" <nickf@ontko.com>)
Responses Re: How do I create unique IDs for an existing set of records  ("Nick Fankhauser" <nickf@ontko.com>)
List pgsql-sql
"Nick Fankhauser" <nickf@ontko.com> writes:
> I tried:

> update test set new_pk = (select nextval('test_new_pk_seq'));

> but it wants to update *all* of the rows to the current nextval (I was
> hoping it would evaluate nextval on each row).

Yeah, the sub-select is taken (perhaps mistakenly) as something that
can be evaluated only once, because it doesn't depend on the outer
query.  You are overthinking the problem; this should work:

update test set new_pk = nextval('test_new_pk_seq');
        regards, tom lane


pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: Wierd error for COPY command
Next
From: "Nick Fankhauser"
Date:
Subject: Re: How do I create unique IDs for an existing set of records