これは私のテーブルweb_bookのスキームである:postgreSQLの:行を複製する方法
Column | Type | Modifiers
----------------+------------------------+-------------------------------------------------------
id | integer | not null default nextval('web_book_id_seq'::regclass)
page_count | integer | not null
year_published | integer | not null
file | character varying(100) | not null
image | character varying(100) | not null
display_on_hp | boolean | not null
name | character varying(128) | not null
description | text | not null
name_cs | character varying(128) |
name_en | character varying(128) |
description_cs | text |
description_en | text |
テーブルはid=3
で1行が含まれています。私は、行を複製したいが、私はこのしようとした場合:
INSERT INTO web_book SELECT * FROM web_book WHERE id=3;
を私はこれを取得:
ERROR: duplicate key value violates unique constraint "web_book_pkey"
DETAIL: Key (id)=(3) already exists
@clime。 'INSERT INTO web_book( page_count、...)SELECT page_count、... ' –
@ClodoaldoNeto:ありがとう、良い点。私はそれを付け加えた。 –
私は参照してください。ありがとうございました! – clime