Sql语句获取本周、上一周、本月数据

sql语句获取本周、上一周、本月数据
获取周数据

1 本周
2 select * from table1 where datediff(week,时间字段,getdate()) = 0
3 上周
4 select * from table1 where datediff(week,时间字段,getdate()) = 1
5 下周
6 select * from table1 where datediff(week,时间字段,getdate()) = -1
获取月数据

1 本月
2 select * from table1 where datediff(mm,时间字段,getdate()) = 0
3 上月
4 select * from table1 where datediff(mm,时间字段,getdate()) = 1
5 下月
6 select * from table1 where datediff(mm,时间字段,getdate()) = -1
昨天:

dateadd(day,-1,getdate())
明天:

dateadd(day,1,getdate())
上月:

month(dateadd(month,-1,getdate()))
本月:

month(getdate())
下月:

month(dateadd(month,1,getdate()))
昨天:

select * from table1 where datediff(dd,时间字段,getdate()) = 1
明天:

select * from table1 where datediff(dd,getdate(),时间字段) = -1
最近七天:

select * from table1 where datediff(dd,时间字段,getdate()) <= 7
当前年:

select 提出日期,datepart(year,getdate()) as 当前年 from table1
前一年:

select 提出日期,datepart(year,getdate()) -1 as 当前年 from table1
后一年:

select 提出日期,datepart(year,getdate()) +1 as 当前年 from table1

本周为0 上一周为 1  上上周为 2 以此类推 (日、周、月都默认传递参数都相同)

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

孟婆来碗豆浆加糖

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值