How can I Import Only a Table's Structure?

The easiest way to import only the structure of databases and tables is to export only that, and not the data. You can use mysqldump to export your database with --no-data option. Many GUI clients have similar options. Importing schema from other database systems, though, is more difficult and may not be possible.

This page is licensed: CC BY-SA / Gnu FDL

Last updated

Was this helpful?