mysql 匯入匯出資料命令

2021-06-01 05:51:52 字數 1003 閱讀 7101

更靈活,匯出   select   *   from   table_name   into  outfile   'c:\\path\\filename.txt '

匯入:load   data   local   infile   'file_name.txt'   into   table   tbl_name    

備份表

>mysqldump -h111.111.11.111 -uroot -ppass -q database tablename>d:/tablename.txt  

>mysqldump -h111.111.11.111 -uroot -ppass -q database tablename>d:/tablename.txt

備份資料庫

>mysqldump -h111.111.11.111 -uroot -ppass -q database>d:/database.txt  

>mysqldump -h111.111.11.111 -uroot -ppass -q database>d:/database.txt

匯入資料庫

>mysql -h111.111.11.111 -uroot -ppass    

mysql> user

database;   

//倒入表   

mysql>source d:/tablename.txt   

//倒入資料庫    

mysql>source d:/database.txt   

>mysql -h111.111.11.111 -uroot -ppass 

mysql> user database;

//倒入表

mysql>source d:/tablename.txt

//倒入資料庫

mysql>source d:/database.txt

mysql 匯入匯出命令 MySQL匯入匯出命令

1.匯出整個資料庫 mysqldump u 使用者名稱 p 資料庫名 匯出的檔名 2.匯出乙個表 mysqldump u 使用者名稱 p 資料庫名 表名 匯出的檔名 3.匯出乙個資料庫結構 d 沒有資料 add drop table 在每個create語句之前增加乙個drop table 4.匯入資...

mysql匯入 匯出命令 MySQL匯入匯出命令

1.匯出整個資料庫 mysqldump u 使用者名稱 p 資料庫名 匯出的檔名 2.匯出乙個表 mysqldump u 使用者名稱 p 資料庫名 表名 匯出的檔名 3.匯出乙個資料庫結構 d 沒有資料 add drop table 在每個create語句之前增加乙個drop table 4.匯入資...

mysql匯入 匯出命令 mysql匯入匯出命令

mysql的使用原生的sql進行資料庫管理,感覺總是有點怪怪的 phpmyadmin等那麼多免費好用的管理工具呢 不過多懂點命令也是很不錯,記憶力有限放到此處以備以後用時翻閱吧 還原乙個資料庫 mysql h localhost u root p123456 www 備份乙個資料庫 mysqldum...