注册 登录
编程论坛 SQL Server论坛

请大侠帮我写这个定时导出查询结果到EXCEL的语句

kw868 发布于 2016-08-21 01:17, 2314 次点击
我有一个SQL查询语句,想设定到SQL的计划任务(作业)中,每月最后一天的晚上11点按此语句查询并导出查询结果生成为一个excel文件存放到硬盘指定目录下!哪位大侠帮我写这个导出查询结果的语句行吗?

请大侠帮我写这个定时导出查询结果到EXCEL的语句
2 回复
#2
kw8682016-08-21 01:43
下面是我的查询语句

求助:请大侠帮我把下面的查询语句改写为可以在SQL"作业"中定时执行导出查询结果到EXCEL的语句,导出目录为D:\每个品牌每个区域.XLS

select e.zipcode,f.name_short,convert(char(6),a.time_conf,112) as ymth,c.classid,c.name_class,count(
distinct a.custid ) as 客户数,count(distinct b.shopid) as SKU数,
sum(b.value_ok) as [成交额],sum
(b.num_in / d.num_box) as [成交件数]
from t_bp_wsalebrk_h a with(nolock),
t_bp_wsalebrk_d b with(nolock) ,
t_bp_class c with(nolock),
t_bp_shop d with(nolock),
t_bp_cust e with(nolock),
t_bp_wsalewrkgroup f with(nolock)
where a.bill = b.bill and b.shopid = d.shopid and e.zipcode=f.groupid and
left(d.classid,len(c.classid)) = c.classid and a.flag_conf = '1' and a.custid = e.custid
and a.time_conf >= '2010-01-01' and a.time_conf < '当天日期’  --修改起止时间
and c.classid like '0%'  and c.remark like '%基本%'
group by e.zipcode,f.name_short,convert(char(6),a.time_conf,112),c.classid,c.name_class
order by e.zipcode,c.classid
#3
mywisdom882016-08-22 17:03
这个有,http://
还有就是在SQL的企业管理器中,建立JOB
如图,重要的几个图片
只有本站会员才能查看附件,请 登录

只有本站会员才能查看附件,请 登录

只有本站会员才能查看附件,请 登录


[此贴子已经被作者于2016-8-22 17:35编辑过]

1