MYSQL匯出成EXCEL表

2021-05-04 01:16:34 字數 341 閱讀 6816

select * from xi_table into outfile 'd:/test.xls';

沒想到這麼簡單。

匯出為txt檔案:

select * from xi_table into outfile 'd:/test.txt';

有時候有excel開啟的時候會出現亂碼,因為office預設的是gb2312編碼,伺服器端生成的很有可能是utf-8編碼,這個時候你有兩種選擇:

在伺服器端使用iconv來進行編碼轉換

iconv -futf8 -tgb2312 -otest2.xls test.xls

ok,再用excel開啟,亂碼問題,煙消雲散。。。

php 匯出mysql內容成excel

header accept ranges bytes header content disposition attachment filename filename mysql connect localhost root or die mysql connected fail mysql sele...

MySQL表結構匯出Excel

在寫設計文件時,需要把mysql中的表結構按要求匯出。mysql客戶端預設的字段不滿足需求時,可通過mysql的information schema.columns表,查詢並按需求匯出字段。information schema.columns表記錄了所有庫中所有表的字段資訊,如下 字段具體意義如下 ...

sql語句,匯出成excel

exec master.xp cmdshell bcp select from gico.management dbo tb user queryout c abc.xls c s 192.168.0.2,11433 u sa p 123456 下邊那句話必須寫成一行,換行就掛了,靠,我也不知道原因...