mysql匯出excel檔案的幾種方法

來源:互聯網
上載者:User

標籤:

 

方法一

php教程用mysql的命令和shell

select * into outfile ‘./bestlovesky.xls‘ from bestlovesky where 1 order by id desc  limit 0, 50;

 

方法二 把bestlovesky.xls以文本方式開啟,然後另存新檔,在編碼選擇ansi編碼,儲存

echo "select id,name from bestlovesky where 1 order by id desc limit 0, 50;"| /usr/local/mysql/bin/mysql -h127.0.0.1-uroot -p123456 > /data/bestlovesky.xls


方法三

mysql your_database  -uroot  -p  -e  "select   *   from   test.table2 "   >   /home/test.xls

用sz命令將檔案下載到本地,開啟如果中文亂碼,

因為office預設的是gb2312編碼,伺服器端產生的很有可能是utf-8編碼,這個時候你有兩種選擇,1.在伺服器端使用iconv來進行編碼轉換iconv -futf8 -tgb2312 -otest2.xls test.xls如果轉換順利,那麼從server上下載下來就可以使用了。
轉換如果不順利,則會提示:iconv: illegal input sequence at position 1841 類似於這樣的錯誤,
先把test.xls下載下來,這個時候檔案是utf-8編碼的,用excel開啟,亂碼。
把test.xls以文本方式開啟,然後另存新檔,在編碼選擇ANSI編碼,儲存。

mysql匯出excel檔案的幾種方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.