首页 > 数据库 > MySQL > 正文

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

2024-07-24 12:39:16
字体:
来源:转载
供稿:网友

下面有二种超级简单的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';  --Vevb.com 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表