会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
HAPPYCODEING LOVESHARING
Copy要看质量,自己感不感兴趣
Paste要能理解,自己能不能掌握
与君共勉
博客园
首页
新随笔
联系
订阅
管理
Determine the current week in a month
It is quiet easy to determine the current week in a year as shown below :
SELECT
DATEPART
( wk,
GETDATE
())
However, to determine the current week in a month, use this query written by AMB
select
datediff
(week,
convert
(
varchar
(
6
),
getdate
(),
112
)
+
'
01
'
,
getdate
())
+
1
posted on
2008-04-02 13:58
josephshi
阅读(
234
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部