Move SQL data from one table to another

后端 未结 13 2895
梦如初夏
梦如初夏 2020-11-29 20:34

I was wondering if it is possible to move all rows of data from one table to another, that match a certain query?

For example, I need to move all table rows from Tab

13条回答
  •  被撕碎了的回忆
    2020-11-29 21:31

    It will create a table and copy all the data from old table to new table

    SELECT * INTO event_log_temp FROM event_log

    And you can clear the old table data.

    DELETE FROM event_log

提交回复
热议问题