Como inserir dados da mesma tabela usando a consulta MySQL
Use INSERT ... SELECT:
insert into your_table (c1, c2, ...)
select c1, c2, ...
from your_table
where id = 1
Ankur