how can we write query using while loop to copy data from one table and insert to another table code example
Example: insert select
INSERT INTO table2
SELECT * FROM table1
WHERE condition;
INSERT INTO table2
SELECT * FROM table1
WHERE condition;