码迷,mamicode.com
首页 > 数据库 > 详细

mysql查询结果写入文件

时间:2014-11-17 15:26:16      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:http   ar   os   sp   文件   数据   bs   ef   as   

注:转自csdn zuyi532

方法1:
shell> mysql -uroot -proot -h localhost xxx库 -e " select * from xxx表 limit 1" >> out.txt
 
方法2:
#>echo "select * from xxx表 limit 1" | /usr/local/mysql/bin/mysql -h 127.0.0.1  -uroot -proot xxx库 > /home/out.txt
 
方法3:
mysql>select * from xxx表 INTO OUTFILE ‘./xxx.txt‘;
 
前两种都是在系统命令行下执行

方法3需要登录到mysql并use数据库,生成的文件只能放在mysql的数据目录中,Mysql的数据目录就是存放mysql的表的目录 **/mysql/var

mysql查询结果写入文件

标签:http   ar   os   sp   文件   数据   bs   ef   as   

原文地址:http://www.cnblogs.com/wushirenfei/p/4103588.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!