How to store day to day records from a mysql table to another?

前端 未结 2 1714
梦如初夏
梦如初夏 2021-01-26 14:46

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)
2条回答
  •  终归单人心
    2021-01-26 15:25

    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.

提交回复
热议问题