MYSQL - テーブルのデータを export する
select * into outfile "dump file name"
fields terminated by '\t'
optionally enclosed by '"'
lines terminated by '\n'
from [table name] where 条件~;
load data infile '[export したファイル名]'
into table [importするテーブル名]
fields terminated by '\t'
optionally enclosed by '"'
lines terminated by '\n';