[dfads params=’groups=-1′]
Exporting Table
The following command syntax will export individual MySQL table from the Database:
$ mysqldump -u root -p db_name tbl_name > sql_script.sql
Importing Table
The follwoing command syntax will import individual MySQL table to the Database:
$ mysql -u root -p db_name < sql_script.sql
Both of the above command will prompt password for the root user.
[dfads params=’groups=-1′]