More than 3 years have passed since last update.
SELECT結果を直接CSV出力する方法。
今回は、sqlファイルを作成しコマンドラインから直接出力する。
SQLファイル
query.sql
SELECT * FROM tables
INTO OUTFILE '/tmp/output.csv' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"';
コマンドラインで実行
% cat query.sql | mysql -u root -p [database]
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin