shell脚本导出mysql表数据到excel

2016-5-23 Frank 服务器

工作中有时候需要导出mysql表的数据到excel ,如果没有客户端,shell脚本就派上用场了。分享代码如下:

#!/bin/bash
# export table tablename to excel
# author:frank
# date:2014-09-08
user=root
pass=1234
db=dbname
table=tablename
dir=/backup/mbtiretool/
file=tablename.xls
mysql --default-character-set='gb2312' -u${user} -p${pass} -e "select * from ${db}.${table}" > ${dir}${file}

标签: mysql

发表评论 登录

Top