 |
Dump just the table structure to a file in MySQL
–Use this to take only the Table structure of the database table in Linux – On the terminal [root@localhost ~]# mysqldump -uroot -proot123 -h200.200.200.12 mydatabasename tbl_mytable_name –no-data > /tmp/tbl_mytable_name_dump.sql Remember , if u dont ...
www.howtogeek.com |
 |