Is there any way to copy database structure without data in MySQL, so the new database will be the same as it is copied from, but with empty tables.
After getting some s
Try this one:
$ mysqldump --no-data -h localhost -u root -p database_name > imported_db_name.sql