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です。