mysql -uroot -p123456 --default-character-set=utf8 test123
#匯出整個資料庫
mysqldump -uroot -p123456 test123> test123.sql
mysqldump -uroot -p123456 test123log> test123_log.sql
mysqldump -uroot -p123456 -d --add-drop-table test123> test123.sql-d 匯出空表
--add-drop-table 每个数据表创建之前添加drop数据表语句3.問題記錄mysqldump在命令列匯出時,如果輸入密碼,提示如下警告訊息(已執行成功,只是會提示警告訊息)
Warning: Using a password on the command line interface can be insecure.
3.1.修復方法
[mysqldump] user=user_name password=password#
以上是mysql資料庫怎麼匯入匯出的詳細內容。更多資訊請關注PHP中文網其他相關文章!