首页 > 数据库技术 > 详细

mysql导入导出CSV

时间:2021-06-16 22:29:27      阅读:31      评论:0      收藏:0      [点我收藏+]
mysql导出csv:
select * from test_info   
into outfile ‘/tmp/test.csv‘   
fields terminated by ‘,‘    ------字段间以,号分隔
optionally enclosed by ‘"‘   ------字段用"号括起
escaped by ‘"‘           ------字段中使用的转义符为"
lines terminated by ‘\r\n‘;  ------行以\r\n结束

mysql导入csv:
load data infile ‘/tmp/test.csv‘   
into table test_info    
fields terminated by ‘,‘  
optionally enclosed by ‘"‘ 
escaped by ‘"‘   
lines terminated by ‘\r\n‘; 

  

mysql导入导出CSV

原文:https://www.cnblogs.com/hbxZJ/p/14890628.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!