mysql数据库表如何导出到excel
时间:2020-09-22 19:40:07
作者:重庆seo小潘
来源:
【相关学习推荐:mysql教程(视频)】 mysql数据库表导出到excel的方法: 方法一 用mysql的命令和shellselect * into outfile ./bestlovesky.xls from bestlovesky where 1 order by id desc limit 0, 50;方法二 把bestlovesky.xls以文本方式打开,然后另存为
【相关学习推荐:mysql教程(视频)】
mysql数据库表导出到excel的方法:
方法一
用mysql的命令和shellselect * into outfile './bestlovesky.xls' from bestlovesky where 1 order by id desc limit 0, 50;方法二
把bestlovesky.xls以文本方式打开,然后另存为,在编码选择ansi编码,保存echo "select id,name from bestlovesky where 1 order by id desc limit 0, 50;"| /usr/local/mysql/bin/mysql -h127.0.0.1-uroot -p123456 > /data/bestlovesky.xls方法三
使用mysql命令mysql -uroot -p -e "select * from test.table2 " > d:a.xsl以上就是mysql数据库表如何导出到excel的详细内容,更多请关注小潘博客其它相关文章!