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.

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.

share|improve this question

2 Answers

up vote 27 down vote accepted

Try the create table LIKE syntax.

create table users2 like users;

This should give you an empty table (users2) with the same structure as the original (users).

share|improve this answer
thanks sir but how about creating the same table and changing the table type from InnoDB to MYISAM at the same time? – GianFS Jan 18 at 1:03
You'd have to do that in two steps - either run a SHOW CREATE TABLE and modify the output to suit you, or run a CREATE TABLE LIKE followed by an ALTER TABLE. – Brilliand Jan 18 at 22:41

There is also another way to create a empty table as existing table and you can use the following command also

create table a select * from users2 limit 0, 0;
share|improve this answer
or CREATE TABLE a SELECT * FROM b WHERE 0=1 – Alex Mar 15 at 15:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.