Friends I have created a mysql table to get the page visits for my website. My table is like this
statistics_table(stat_id,visited_page,visit_count)
You can use the following query statement to insert datas to another table,
INSERT INTO Table_name(stat_id,visited_page,visit_count) SELECT stat_id,visited,visit_count_page FROM Exist_Tablename WHERE ; DELETE FROM Exist_Tablename WHERE ;
Like this you can try,
This may helps you.