MySQL-导入导出csv

时间:2019-01-04 00:05:50   收藏:0   阅读:169

导入

load data infile ‘c:/test.csv‘   
into table test [character set utf8]
fields terminated by ‘,‘  optionally enclosed by ‘"‘ escaped by ‘"‘   
lines terminated by ‘\r\n‘;

导出

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

如果要带上字段名用:

-- select * from (
--  select ‘col1‘,‘col2‘,‘col3‘,‘col4‘ union 
--  (select col1,col2,col3,col4 from test where col1 = ‘xxx‘ order by col1)
-- ) tbl 

原文:https://www.cnblogs.com/jffun-blog/p/10217592.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!