mysql按條件匯出資料(txt),並加分隔符

2021-09-26 18:24:05 字數 324 閱讀 9207

select name,reno 

into outfile "/var/lib/mysql-files/test1.txt"

fields terminated by ';'

from test

where reno ='000'

我這裡是在linux環境下測試的:

這裡分隔符是「;」,會將test表中按條件reno ='000'的資料(包括name,reno兩個字段)匯出到目錄/var/lib/mysql-files/下,檔名為test1.txt,然後就可以去相應目錄檢視了。

參考**:

按條件匯出excel資料

按條件匯出excel資料 寫法1 proc export data hbq.tmp double card 51 6 firstobs 1 obs 65486 outfile c users ex wljr huangbiquan downloads 二類戶促動測試群購買資料採集.xls repla...

Mysql資料庫備份和按條件匯出表資料

mysql資料庫備份和按條件匯出表資料 一 備份資料庫 mysqldump u root p dbcurr home 20090219.sql mysqldum為備份命令,u使用者,p密碼,dbcurr資料庫名,備份符,home 20090219.sql儲存資料檔案的路徑。www.2cto.com ...

資料匯出到TXT檔案

public static void writetxtfile listexportlist,string filepath,string filename catch exception ex if filepath.endswith filepath filepath filename else...