|
|
View previous topic
::
View next topic
|
Author |
Message |
ramon fincken Site's programmer
 Get a free globally recognized avatar It's free!
Joined: 03 Aug 2007 Posts: 412 Location: A'dam/Diemen, The Netherlands
|
Posted: Sat Aug 15, 2009 8:07 pm Post subject: [solution] Copy entire table ( or partial table ) to a new table |
|
|
Example:
To make a copy of the table recipes which is in a different database called production into a new table called recipes_new in the currently selected database, use these two commands:
Code: | CREATE TABLE recipes_new LIKE production.recipes;
INSERT recipes_new SELECT * FROM production.recipes; |
This stuff actually works !
Now for a partial table: ( oldtable contains 10 colums/fields, newtable only 4 including primary key, which we solve by NULL-ing the primary incremental key )
Code: | INSERT `newtable` select NULL, `ip`,`ip_forwarded`,`time` FROM `oldtable` |
Source:
http://www.tech-recipes.com/rx/1487/cop...new-table/ |
|
Back to top |
|
 |
Google adsense Advertisement
|
Posted: Sat Aug 15, 2009 8:07 pm Post subject: [solution] Copy entire table ( or partial table ) to a new table |
|
|
Advertisement
|
|
Back to top |
|
 |
GravityForms Advertisement
|
Posted: Sat Aug 15, 2009 8:07 pm Post subject: [solution] Copy entire table ( or partial table ) to a new table |
|
|
Advertisement
 |
|
Back to top |
|
 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|