Mysql查詢結果匯出為Excel的指令碼

2021-09-25 04:40:52 字數 392 閱讀 4887

#!/bin/bash

sql="select * from users"#sql查詢語句

mysql -h url -uroot -p'1234' -e"$" redmine_dev > result.xls#遠端執行查詢語句並儲存為excel檔案,其他方法請看

iconv -futf8 -tgb18030 -ostatistical_report.xls result.xls#linux到windows時,開啟excel中文亂碼,需要進行編碼轉換。轉碼時使用gb18030標準解決iconv: illegal input sequence at position ***問題,原因請看

Mysql查詢結果匯出為Excel的幾種方法

url 方法一 查詢語句直接輸出 語法格式 example select into outfile data var 3307 catid.xls from help cat where 1 order by cat id desc limit 0,20 select into outfile 匯出...

將mysql的查詢結果匯出為csv

要將mysql的查詢結果匯出為csv,一般會使用php連線mysql執行查詢,將返回的查詢結果使用php生成csv格式再匯出。但這樣比較麻煩,需要伺服器安裝php才可以實現。我們可以使用 into outfile,fields terminated by,optionally enclosed by...

筆記 mysql 匯出查詢結果

語法 the select into outfile file name options form of select writes the selected rows to a file.示例 select from students into outfile test users.csv fie...