当前位置: 代码迷 >> MySQL >> mysql将查询结果导出csv文件的步骤into outfile
  详细解决方案

mysql将查询结果导出csv文件的步骤into outfile

热度:176   发布时间:2016-05-05 16:38:35.0
mysql将查询结果导出csv文件的方法into outfile
例句:

select?* from table_name into outfile '/tmp/tmp.csv' fields terminated by ',';

?
详解:
①?into outfile '/tmp/tmp.csv' 指定导出文件的目录和文件名
?
②?fields terminated by ',' 将数据以逗号“,”隔开
  相关解决方案