Mysql Import Export


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. mysqldump -fv -u{user} -p {db_name} > {file_name}.sql
  2. mysql -f -u{user} -p {db_name} < {file_name}.sql

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.