INSERT ... SELECT
を使用します :
insert into your_table (c1, c2, ...)
select c1, c2, ...
from your_table
where id = 1
ここで、c1, c2, ...
id
を除くすべての列です 。 id
を使用して明示的に挿入する場合 2の場合、それをINSERT列リストとSELECTに含めます:
insert into your_table (id, c1, c2, ...)
select 2, c1, c2, ...
from your_table
where id = 1
重複する可能性のあるid
に注意する必要があります もちろん、2番目のケースでは2です。