tags:

views:

477

answers:

1

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.

+5  A: 

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).

Brett Bender