Re: How do I create unique IDs for an existing set of records
От
Tom Lane
Тема
Re: How do I create unique IDs for an existing set of records
Дата
Msg-id
26777.1019837679@sss.pgh.pa.us
Ответ на
How do I create unique IDs for an existing set of records (Nick Fankhauser)
Список
Дерево обсуждения
How do I create unique IDs for an existing set of records "Nick Fankhauser" <nickf@ontko.com>
Re: How do I create unique IDs for an existing set of records Tom Lane <tgl@sss.pgh.pa.us>
Re: How do I create unique IDs for an existing set of records "Nick Fankhauser" <nickf@ontko.com>
"Nick Fankhauser" 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 по дате отправления
От: Nick Fankhauser
Дата: