cara memasukkan data tabel yang sama menggunakan kueri mysql

Use INSERT ... SELECT:

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