mysql>use caida; //選擇要操作的資料庫
mysql>select ip,node,physical_cpu,cpu_cores,processor,cpumodel,throughtput,use_processor,use_memory,use_disk from three_openstack_server into outfile 'three_openstack_server.xls; //選擇匯出的專案到指定檔案
預設情況下,檔案是儲存到/var/lib/mysql/caida下面的,發現該目錄下還有以下檔案
-rwxrwx--- 1 mysql mysql 8922
feb2610:
36 three_openstack_server.frm
-rwxrwx--- 1 mysql mysql 828
mar1
14:08 three_openstack_server.myd
-rwxrwx--- 1 mysql mysql 1024
mar1
14:08 three_openstack_server.myi
*.frm是描述了表的結構,*.myd儲存了表的資料記錄,*.myi則是表的索引
每個資料庫都會在data目錄下生成乙個資料夾,這個是不能刪除的。
如果要對匯出的資料夾進行操作要對/var/lib/mysql/caida資料夾賦予正確的許可權,不然會很苦逼! mysql 匯出資料
方法一 select.into outfile mysql select from mytbl into outfile tmp mytbl.txt 檢視mytbl.txt中內容如下 mysql system cat tmp mytbl.txt1 name1 2 name2 3 n 匯出的檔案中資料...
MySQL資料匯出
方法一 select.into outfile mysql select from mytbl into outfile tmp mytbl.txt query ok,3 rows affected 0.00 sec 檢視mytbl.txt中內容如下 mysql system cat tmp myt...
mysql匯出資料
直接匯出某庫全表 包括表設計和表資料 為sql語句 mysqldump h172.16.uroot p somedatabase sometable somewhere table.sql匯出某個表為特定檔案格式 txt,xls 只是資料 可以通過sql自行過濾某些資料 mysql h172.16....