View Single Post
  #1   IP: 199.115.98.59
Old 2016-07-18, 11:35 AM
Rainsville Rainsville is offline
初级会员
 
Join Date: 2014-02-02
Posts: 1
Rainsville 现在声名狼藉
Default How to copy a row and insert in same table with a autoincrement field in MySQL?

Use INSERT ... SELECT:

insert into your_table (c1, c2, ...)
select c1, c2, ...
from your_table
where id = 1

where c1, c2, ... are all the columns except id. If you want to explicitly insert with an id of 2 then include that in your INSERT column list and your SELECT:

insert into your_table (id, c1, c2, ...)
select 2, c1, c2, ...
from your_table
where id = 1

You'll have to take care of a possible duplicate id of 2 in the second case of course.
Reply With Quote