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? Quote 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"); Quote Link to comment https://forums.phpfreaks.com/topic/49760-move-table-row/#findComment-244098 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.