mysql實現查詢結果匯出csv檔案及匯入csv檔案到資料庫操作_Mysql

來源:互聯網
上載者:User
這篇文章主要介紹了mysql實現查詢結果匯出csv檔案及匯入csv檔案到資料庫操作,結合執行個體形式分析了mysql相關資料庫匯出、匯入語句使用方法及操作注意事項,需要的朋友可以參考下

本文執行個體講述了mysql實現查詢結果匯出csv檔案及匯入csv檔案到資料庫操作。分享給大家供大家參考,具體如下:

mySQL 查詢結果匯出csv檔案:

select logtime, operatingsystem, imeifrom GameCenterLogswhere  operatingsystem >= 1 and operatingsystem <=3group by operatingsystem,imeiinto outfile '/tmp_logs/tmp.csv'fields TERMINATED BY ',' OPTIONALLY ENCLOSED BY '#' LINES TERMINATED BY '\r\n'

fields TERMINATED BY ',' 設定欄位的分割符

OPTIONALLY ENCLOSED BY '#' 設定欄位內容若為字串,則使用'#'包含

LINES TERMINATED BY '\r\n' 資料行分割符

匯出檔案內容:

1453513680,3,#hello word#\r\n
1453515470,2,#title content#\r\n

mysql命令列匯入csv檔案到資料庫:

load data infile '/tmp_logs/tmp.csv'into table GameCenterDAULogs fields terminated by ',' OPTIONALLY ENCLOSED BY '#' lines terminated by '\r\n'


有可能作業系統不同,匯出的csv檔案的資料行分隔字元不一定為\r\n,可以使用cat -A /tmp_logs/tmp.csv 查看結尾符


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.