Mysql通过语句导出excel
Posted 朱小勇
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql通过语句导出excel相关的知识,希望对你有一定的参考价值。
1、带标题
select * into outfile ‘E:/20200528222319_weibaojilv.xls‘ from(select ‘序号‘,‘维修时间‘,‘结束时间‘,‘维修花费时间‘,‘维修码‘,‘所属分系统‘,‘所属分系统‘,‘故障名‘,‘维修人员‘,‘维修费用‘,‘备注‘ union select id,time,end_time,use_time_str,fix_code,subsystem,device_name,fault_name,who_take,spend_money,remark from fix_history)b
2、不带标题
select * into outfile ‘E:/catid.xls‘ from 784_note
以上是关于Mysql通过语句导出excel的主要内容,如果未能解决你的问题,请参考以下文章