分类: Mysql/postgreSQL
2013-07-07 23:02:38
mysql > select * from table1 where xxxx into outfile '/tmp/sss.txt'; --将查询结果输出为普通txt文件
mysql > select * from table1 where xxxx into outfile '/tmp/sss.csv' fields terminated by ','; --生成csv文件,并用,分隔
注意输出的路径一定要在/tmp下,其它的路径下没有输出权限.