码迷,mamicode.com
首页 > 其他好文 > 详细

查询指定日期所在周的一周日班表记录

时间:2015-09-02 18:49:18      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

set datefirst 1 select count(*) from
(select date from(select dateadd(dd,number,‘2015-01-01‘) date from master..spt_values where [type] = ‘p‘ and number >= 0 and number < datediff(dd,‘2015-01-01‘,‘2016-01-01‘)) t
where datepart(week,date) = (select DATENAME(week,@date))) a , bbreport b
where substring(b.date,1,10) = convert(char(10),a.date,120) and cmsid=‘014811‘

查询指定日期所在周的一周日班表记录

标签:

原文地址:http://www.cnblogs.com/pp521/p/4779041.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!