码迷,mamicode.com
首页 > 数据库 > 详细

mysql中csv文件的导入导出

时间:2017-06-26 10:17:33      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:into   sed   文件的   根据   例子   esc   from   lin   导入导出   

导出例子:

select *from test
into outfile ‘D:test.csv‘
fields terminated by ‘,‘ optionally enclosed by ‘"‘ escaped by ‘"‘
lines terminated by ‘\r\n‘;

导入例子:
load data infile ‘D:test.csv‘
into table `test`
fields terminated by ‘,‘ optionally enclosed by ‘"‘ escaped by ‘"‘
lines terminated by ‘\n‘ ignore 1 lines;

实际操作中根据这个修改就行,有问题的地方还望指教~~

mysql中csv文件的导入导出

标签:into   sed   文件的   根据   例子   esc   from   lin   导入导出   

原文地址:http://www.cnblogs.com/sunshinekevin/p/7078947.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!