设置主页 | 收藏本站 Excel学习网-公益型的EXCEL在线学习网站,助您轻松办公!

MySQL查询结果导出Excel数据的方式

2020年01月18日 15:13 发布来源:Excel学习网

 方法一:

查询语句直接输出

语法格式:

Example:     

select * into outfile '/data/var-3307/catid.xls' from help_cat where 1 order by cat_id desc limit 0,20;

select * into outfile '导出文件存放目录' from 表面和查询条件等信息!

方法二:

shell命令行下把Excel以文本方式打开,然后另存为,在编码选择ansi编码保存

语法格式

Example

echo "select * from db_web.help_cat where 1 order by sort desc limit 0,20" | mysql -h127.0.0.1 -uroot > /data/sort.xls

echo 查询语句 管道 登录mysql链接方式 > 定向输出文件

方式三:

查询定向输出为Excel文件后缀,然后转码

语法格式:

web -uroot  -e "select * from help_cat where 1 order by type desc limit 0,20" > /data/type.xls

   mysql链接信息 数据库 用户名 密码 然后执行查询语句,定向输出。

  

原创文章如转载请注明:转载自Excel学习网 [ http://www.excelxx.com/]
需要保留本文链接地址:http://www.excelxx.com/xuexixinde/11693.html
分享到:
网站地图 | XML地图 | 免责声明 | 关于我们 | Excel学习网:优秀的EXCEL在线学习和资源分享网站。
版权所有: CopyRight © 2013-2018 www.excelcn.com All Rights Reserved.
豫ICP备12002644号