注意:
これは、ac_n_circ
の場合にのみ意味があります ではありません 主キー列。
これが必要だと確信している場合(本当にですか?)、次のようなものが機能するはずです:
with new_numbers as (
select row_number() over (order by ac_n_circ) as new_nr,
ac_n_circ,
id
from foo
)
update foo
set ac_n_circ = nn.new_nr
from new_numbers nn
where nn.id = foo.id;
または:
update foo
set ac_n_circ = nn.new_number
from (
select id,
ac_n_circ,
row_number() over (order by ac_n_circ) as new_number
from foo
) nn
where nn.id = foo.id;
どちらのステートメントも、id
という名前の主キー列があることを前提としています。 。