当前位置:首页 > Mysql教程 > 列表

简单的MySQL中导出CSV的各种方法

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-15 13:28:20 浏览: 评论:0 

下面有二种超级简单的mysql命令,可以直接导出csv格式的数据,有需要的朋友可以参考一下,我推荐直接利用phpmyadmin操作,代码如下:

  1. select * from test_info    
  2. into outfile '/tmp/test.csv'    
  3. fields terminated by ',' optionally enclosed by '"' escaped by '"'    
  4. lines terminated by 'rn'

MySQL中导入CSV格式数据,代码如下:

  1. load data infile '/tmp/test.csv'    
  2. into table test_info     
  3. fields terminated by ','  optionally enclosed by '"' escaped by '"'    
  4. lines terminated by 'rn';  --phpfensi.com 

还有一种方法,就是用phpmyadmin的有同学都知道,它带有一个直接导出excel和csv的功能,那种更方便.

Tags: mysql导出csv csv格式文件

分享到:

相关文章