简单MySQL到CSV

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单MySQL到CSV相关的知识,希望对你有一定的参考价值。

Just a short little script that takes a mysql query and turns it into a csv file that downloads automatically. If your interested in the details you can hit up the link.
  1. require '../includes/init.php'; // This connects to the database
  2. header("Content-type: text/csv");
  3. header("Content-Disposition: attachment; filename=client_export.csv");
  4. header("Pragma: no-cache");
  5. header("Expires: 0");
  6. $q=mysql_query('select * from users');
  7. while($r=mysql_fetch_array($q)){
  8. foreach($r as $k => $v){
  9. if(is_numeric($k)){
  10. echo '"'.str_replace('"', '""', $v).'",';
  11. }
  12. }
  13. echo " ";
  14. }

以上是关于简单MySQL到CSV的主要内容,如果未能解决你的问题,请参考以下文章

csv文件导入到mysql

Mysql源码分析--csv存储引擎

使用html代码将mysql表导出到csv

python 读取多个csv文件中某一列,并生成一个新csv文件

有人可以解释以下 R 代码片段吗? [关闭]

将sqlserver导出的csv数据导入到ubuntu和mac上的mysql