строки, если просто проапдейтить строку на те же самые данные?
postgres=# create table test_tab(id int); CREATE TABLE postgres=# insert into test_tab values(1); INSERT 0 1 postgres=# select ctid, id from test_tab; ctid | id -------+---- (0,1) | 1 (1 row) postgres=# update test_tab set id = 2 where id = 1; UPDATE 1 postgres=# select ctid, id from test_tab; ctid | id -------+---- (0,2) | 2 (1 row) postgres=# update test_tab set id = 2 where id = 2; UPDATE 1 postgres=# select ctid, id from test_tab; ctid | id -------+---- (0,3) | 2 (1 row) postgres=# похоже создаётся
Обсуждают сегодня