gurechan Posted May 3, 2007 Share Posted May 3, 2007 Not sure if this can be done, but is there a way to move a row from one mysql table to another (table structure is identical) using php? Link to comment https://forums.phpfreaks.com/topic/49760-move-table-row/ Share on other sites More sharing options...
bubblegum.anarchy Posted May 3, 2007 Share Posted May 3, 2007 The INSERT SELECT statement, something like: mysql_query("INSERT INTO new_table SELECT * FROM old_table"); Link to comment https://forums.phpfreaks.com/topic/49760-move-table-row/#findComment-244098 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.