I need to duplicate a table in MySQL, making the new table empty. That is, I need to copy only the structure of an existing table to a new one.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Try the create table LIKE syntax.
This should give you an empty table (users2) with the same structure as the original (users). |
|||||
|
|
There is also another way to create a empty table as existing table and you can use the following command also
|
|||
|
|