## select ... into outfile语法 ``` select * from students order by score limit 100 into outfile '/database/mysql/tmp/students.csv' FIELDS TERMINATED BY ......
MySQL之load data和select into outfileselect into outfile 今天上午,帮助业务方解决了一个问题,过程大概是这样的。业务方有一个需求是要实现在客户端的应用服务器使用select into outfile的方法导出一个文件。这个需求之前也做过,就是简单的 ......