LoginSignup
0
1

More than 5 years have passed since last update.

mysqlのデータをCSVで出力する方法

Posted at

欲しいカラムを指定し、csvデータの先頭にカラム名をつける方法

idとpriceカラムの取り出し(例)

mysql> select 'id', 'price' union select < col_name >, < col_name > into outfile "test.csv" fields terminated by ',' optionally enclosed by "" from < table_name >;

そのファイルを開く

$ open /usr/local/var/mysql/< db_name >/test.csv 
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1